Get-SCComputerTier
VMM 컴퓨터 계층 개체를 가져옵니다.
Syntax
Get-SCComputerTier
[-VMMServer <ServerConnection>]
[-All]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCComputerTier
[-VMMServer <ServerConnection>]
-Service <Service>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCComputerTier
[-VMMServer <ServerConnection>]
[-ID <Guid>]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Description
Get-SCComputerTier cmdlet은 하나 이상의 VMM(Virtual Machine Manager) 컴퓨터 계층 개체를 가져옵니다.
예제
예제 1: 특정 서비스에 대한 컴퓨터 계층 가져오기
PS C:\> $Service = Get-SCService -Name "Service01"
PS C:\> $ComputerTier = Get-SCComputerTier -Service $Service
PS C:\> $ComputerTier
첫 번째 명령은 Service01이라는 서비스 개체를 가져오고 개체를 $Service 변수에 저장합니다.
두 번째 명령은 $Service 저장된 서비스의 컴퓨터 계층을 가져옵니다.
마지막 명령은 사용자에게 $ComputerTier 저장된 컴퓨터 계층의 속성을 표시합니다.
매개 변수
-All
이 cmdlet은 부모 개체와 무관하게 모든 하위 개체의 전체 목록을 가져옵니다.
예를 들어 이 명령은 Get-SCVirtualDiskDrive -All
각 가상 디스크 드라이브 개체가 연결된 가상 머신 개체 또는 템플릿 개체에 관계없이 모든 가상 디스크 드라이브 개체를 가져옵니다.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ID
특정 개체의 숫자 식별자를 전역적으로 고유한 식별자 또는 GUID로 지정합니다.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OnBehalfOfUser
사용자 이름을 지정합니다. 이 cmdlet은 이 매개 변수가 지정하는 사용자를 대신하여 작동합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OnBehalfOfUserRole
사용자 역할을 지정합니다. 사용자 역할을 가져오려면 Get-SCUserRole cmdlet을 사용합니다. 이 cmdlet은 이 매개 변수가 지정하는 사용자 역할을 대신하여 작동합니다.
Type: | UserRole |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Service
VMM 서비스 개체를 지정합니다.
Type: | Service |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-VMMServer
VMM 서버 개체를 지정합니다.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
출력
ComputerTier
이 cmdlet은 ComputerTier 개체를 반환합니다.