Set-SCCustomProperty
사용자 지정 속성의 속성을 수정합니다.
Syntax
Set-SCCustomProperty
[-VMMServer <ServerConnection>]
-CustomProperty <CustomProperty>
[-Name <String>]
[-Description <String>]
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[<CommonParameters>]
Set-SCCustomProperty
[-VMMServer <ServerConnection>]
-CustomProperty <CustomProperty>
[-Name <String>]
[-Description <String>]
-AddMember <CustomPropertyObjectType[]>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[<CommonParameters>]
Set-SCCustomProperty
[-VMMServer <ServerConnection>]
-CustomProperty <CustomProperty>
[-Name <String>]
[-Description <String>]
-RemoveMember <CustomPropertyObjectType[]>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[<CommonParameters>]
Description
Set-SCCustomProperty cmdlet은 사용자 지정 속성의 속성을 수정합니다. 수정할 수 있는 속성은 다음과 같습니다.
- 사용자 지정 속성에 대한 설명
- 사용자 지정 속성의 이름
- 사용자 지정 속성에 멤버 추가
- 사용자 지정 속성에서 멤버 제거
사용자 지정 속성을 만드는 방법에 대한 자세한 내용은 을 입력합니다 Get-Help New-SCCustomProperty -Detailed
.
예제
예제 1: 사용자 지정 속성에 멤버 추가
PS C:\> $CustomProp = Get-SCCustomProperty -Name "Cost Center"
PS C:\> Set-SCCustomProperty -CustomProperty $CustomProp -AddMember "VMHost"
첫 번째 명령은 Cost Center라는 사용자 지정 속성 개체를 가져오고 개체를 $CustomProp 변수에 저장합니다.
두 번째 명령은 $CustomProp 저장된 사용자 지정 속성에 VMHost 멤버를 추가합니다.
예제 2: 사용자 지정 속성에서 멤버 제거
PS C:\> $CustomProp = Get-SCCustomProperty -Name "Cost Center"
PS C:\> Set-SCCustomProperty -CustomProperty $CustomProp -RemoveMember "VM"
첫 번째 명령은 Cost Center라는 사용자 지정 속성 개체를 가져오고 개체를 $CustomProp 변수에 저장합니다.
두 번째 명령은 $CustomProp 저장된 사용자 지정 속성 개체에서 VM 멤버를 제거합니다.
매개 변수
-AddMember
이 cmdlet이 그룹과 같은 멤버 개념이 있는 개체에 추가하는 멤버 배열을 지정합니다. 예를 들어 이 cmdlet은 하나 이상의 Active Directory® Domain Services 도메인 사용자 또는 그룹을 사용자 역할에 추가할 수 있습니다. 다음 형식으로 멤버를 지정합니다.
- 도메인 \ 사용자
- 사용자
- User@Domain
- Domain\LabGroupAlias
- LabGroupAlias
랩 그룹 별칭은 전자 메일 별칭이 아닌 Active Directory Domain Services 보안 그룹입니다.
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 |
-CustomProperty
사용자 지정 속성 개체를 지정합니다.
Type: | CustomProperty |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Description
지정된 개체에 대한 설명을 지정합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JobVariable
작업 진행률을 추적하여 이 매개 변수로 이름이 지정된 변수에 보관하도록 지정합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
VMM 개체의 이름을 지정합니다.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PROTipID
이 작업을 트리거한 PRO 팁(성능 및 리소스 최적화 팁)의 ID를 지정합니다. 이 매개 변수를 사용하면 PRO 팁을 감사할 수 있습니다.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RemoveMember
이 cmdlet이 멤버 자격 개념이 있는 VMM 개체(예: 그룹)에서 제거하는 멤버 배열을 지정합니다. 예를 들어 이 cmdlet은 사용자 역할에서 하나 이상의 Active Directory Domain Services 도메인 사용자 또는 그룹을 제거할 수 있습니다. 다음 형식으로 멤버를 지정합니다.
- 도메인 \ 사용자
- 사용자
- User@Domain
- Domain\LabGroupAlias
- LabGroupAlias
랩 그룹 별칭은 전자 메일 별칭이 아닌 Active Directory Domain Services 보안 그룹입니다.
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 |
-RunAsynchronously
컨트롤이 명령 셸로 즉시 반환되도록 작업이 비동기적으로 실행됨을 나타냅니다.
Type: | SwitchParameter |
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 |