Get-SCServiceConfiguration
Applies To: System Center 2012 - Virtual Machine Manager
Get-SCServiceConfiguration
Gets a service configuration object stored in the VMM library.
Syntax
Parameter Set: Default
Get-SCServiceConfiguration [-ID <Guid> ] [-Name <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]
Detailed 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<Guid>
Specifies the numerical identifier (as a globally unique identifier, or GUID) for a specific object.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
-Name<String>
Specifies the name of a VMM object.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
-VMMServer<ServerConnection>
Specifies a VMM server object.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
- ServiceConfiguration
Examples
1: Get all service configuration objects in the library.
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.
PS C:\> $SvcConfigs = Get-SCServiceConfiguration -VMMServer "VMMServer01.Contoso.com" | where { $_.Name -match "Service" }
PS C:\> $SvcConfigs