Get-SCCustomProperty
VMM 데이터베이스에서 사용자 지정 속성 정의를 가져옵니다.
Syntax
Get-SCCustomProperty
[-VMMServer <ServerConnection>]
[-ID <Guid>]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCCustomProperty
[-VMMServer <ServerConnection>]
-Name <String>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Get-SCCustomProperty
[-VMMServer <ServerConnection>]
-Member <CustomPropertyObjectType>
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
Description
Get-SCCustomProperty cmdlet은 VMM(Virtual Machine Manager) 데이터베이스에서 사용자 지정 속성 정의를 가져옵니다.
예제
예제 1: 이름으로 사용자 지정 속성 가져오기
PS C:\> $CustomProp = Get-SCCustomProperty -Name "Cost Center"
PS C:\> $CustomProp
첫 번째 명령은 Cost Center라는 사용자 지정 속성 개체를 가져오고 개체를 $CustomProp 변수에 저장합니다.
두 번째 명령은 사용자에게 $CustomProp 저장된 사용자 지정 속성 개체의 속성을 표시합니다.
예제 2: 특정 멤버 형식에 대한 모든 사용자 지정 속성 가져오기
PS C:\> Get-SCCustomProperty -Member "VM"
이 명령은 VM을 멤버로 포함하는 모든 사용자 지정 속성을 반환합니다.
매개 변수
-ID
특정 개체의 숫자 식별자를 전역적으로 고유한 식별자 또는 GUID로 지정합니다.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Member
그룹의 일부인 개체를 지정합니다. 이 매개 변수에 허용되는 값은 다음과 같습니다.
- VM
- 템플릿
- VMHost
- HostCluster
- VMHostGroup
- ServiceTemplate
- ServiceInstance
- ComputerTier
- 클라우드
- ProtectionUnit
Type: | CustomPropertyObjectType |
Accepted values: | VM, Template, VMHost, HostCluster, VMHostGroup, ServiceTemplate, ServiceInstance, ComputerTier, Cloud, ProtectionUnit |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
VMM 개체의 이름을 지정합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
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 |
-VMMServer
VMM 서버 개체를 지정합니다.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |