Get-SCPhysicalComputerProfile
물리적 컴퓨터 프로필 개체를 가져옵니다.
Syntax
Get-SCPhysicalComputerProfile
[-VMMServer <ServerConnection>]
[-All]
[<CommonParameters>]
Get-SCPhysicalComputerProfile
[[-Name] <String>]
[-VMMServer <ServerConnection>]
[<CommonParameters>]
Get-SCPhysicalComputerProfile
[-VMMServer <ServerConnection>]
[-ID <Guid>]
[<CommonParameters>]
Description
Get-SCPhysicalComputerProfile cmdlet은 물리적 컴퓨터 프로필 개체를 가져옵니다.
예제
예제 1: ID로 물리적 컴퓨터 프로필 가져오기
PS C:\> $PhysicalComputerProfile = Get-SCPhysicalComputerProfile -ID "d1ce0773-4f50-4f12-a244-38a5a35c5326"
이 명령은 지정된 ID가 있는 물리적 컴퓨터 프로필을 가져오고 $PhysicalComputerProfile 변수에 저장합니다.
예제 2: 이름으로 물리적 컴퓨터 프로필 가져오기
PS C:\> $PCP = Get-SCPhysicalComputerProfile -Name "Windows Server 2012 R2"
이 명령은 Windows Server 2012 R2라는 물리적 컴퓨터 프로필을 가져오고 $PCP 변수에 저장합니다.
매개 변수
-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 |
-Name
VMM(Virtual Machine Manager) 개체의 이름을 지정합니다.
Type: | String |
Position: | 0 |
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 |
출력
PhysicalComputerProfile
이 cmdlet은 PhysicalComputerProfile 개체를 반환합니다.