Get-SCServiceConfiguration

Gets a service configuration object stored in the VMM library.

Description

The Get-SCServiceConfiguration cmdlet gets one or more service configuration objects stored in the System Center Virtual Machine Manager (VMM) library.

For more information about Get-SCServiceConfiguration, type: "Get-Help Get-SCServiceConfiguration -online".

Parameters

ID

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies the numerical identifier (as a globally unique identifier, or GUID) for a specific object.

Name

Required? false
Accept Pipeline Input? false
Position? named
Specifies the name of a VMM object.

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Get all service configuration objects in the library.
PS C:\> $SvcConfigs = Get-SCServiceConfiguration -VMMServer "VMMServer01.Contoso.com" | where { $_.Name -match "Service" }
PS C:\> $SvcConfigs 
The first command gets all service configuration objects on VMMServer01, selects from the results the service configuration objects that contain"Service" in their name, and then stores the objects in the $SvcConfigs variable.

The second command displays the properties of the service configuration objects to the user.

See Also