Get-SCComputerTier

Gets a VMM computer tier object.

Description

The Get-SCComputerTier cmdlet gets one or more System Center Virtual Machine Manager (VMM) Computer Tier objects.

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

Parameters

All

Required? false
Accept Pipeline Input? false
Position? named
Retrieves a full list of all subordinate objects independent of the parent object. For example, the command Get-SCVirtualDiskDrive -All retrieves all virtual disk drive objects regardless of the virtual machine object or template object that each virtual disk drive object is associated with.

VMMServer

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

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.

VMMServer

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

Service

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

VMMServer

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

Examples

1: Get a computer tier for a specific service.
PS C:\> $Service = Get-SCService -Name "Service01"
PS C:\> $ComputerTier = Get-SCComputerTier -Service $Service 
PS C:\> $ComputerTier

The first command gets the service object named Service01 and stores the object in the $Service variable.

The second command gets the computer tier for the service stored in $Service. 

The last command displays the properties of the computer tier stored in $ComputerTier to the user.

See Also