Skip to content

Recent Articles

26
Apr

Private Cloud Planning Guide for Infrastructure as a Service (IaaS) – Bill Loeffler of Microsoft

http://social.technet.microsoft.com/wiki/contents/articles/4622.private-cloud-planning-guide-for-infrastructure-as-a-service-iaas.aspx

Great for understanding the what and how of private cloud.

26
Apr

Interview with an organization that has implemented a private cloud using System Center 2012

Good raw interview from MMS 2012…

http://blogs.technet.com/b/canitpro/archive/2012/04/19/talking-to-mvps-amp-customers-at-mms-2012-manulife-s-journey-to-private-cloud.aspx

27
Mar

Microsoft System Center 2012 Service Manager Survival Guide

Microsoft recently published a few System Center 2012 survival guides to their TechNet Wiki page. These guides contain links to some really great resources like blogs, forums, documentation, social media and tools for Service Manager and the other applications in the suite.

 

13
Mar

Getting PowerShell scripts to run tasks remotely

In working on a Service Manager project, I had a functional requirement that I decided was best handled with a custom task that would run a PowerShell script. PowerShell scripts must be run on the Service Manager management server and in this particular use case, this task would need to be run from remote consoles, so I had a problem to solve. I needed to find a way to initiate the task from the remote console and have it run locally on the management server.

The solution to this problem was to add the Invoke-Command cmdlet to the beginning of my PowerShell script that establishes a remote session between the console and the management server and runs the script on the server. Here is an example:

Invoke-Command -ComputerName Server01 {
$active = Get-SCSMEnumeration IncidentStatusEnum.Active
$incident = Get-SCSMObject -Class(Get-SCSMClass -Name System.WorkItem.Incident$) | where {$_.Id –eq “IR123”}
$incident | Set-SCSMObject –Property Status –Value $active }

Now this cmdlet can be applied to most any application that needs a PowerShell script run remotely. A prerequisite for the Invoke-Command cmdlet is the installation and setup of Windows Remote Management (WinRM) as well has having the WinRM listener setup. This is achieved by opening a PowerShell window on the target computer and entering:

WinRM QuickConfig

This command will configure WinRM on the target computer. You will then be prompted that to use the remote services you need to setup listeners on HTTP://*. Select “yes” and a listener will be added and your target computer will be ready to accept PS Sessions which will allow you to run PowerShell scripts remotely.

6
Mar

Opalis / Orchestrator Use Cases – samples on CodePlex

The current best source of Opalis / Orchestrator use case samples is Charles Joy’s work out on codeplex, see http://opalis.codeplex.com/releases/view/70069.  Thank you, Charles!