Get-SCPhysicalComputerProfile
获取物理计算机配置文件对象。
语法
Get-SCPhysicalComputerProfile
[-VMMServer <ServerConnection>]
[-All]
[<CommonParameters>]
Get-SCPhysicalComputerProfile
[[-Name] <String>]
[-VMMServer <ServerConnection>]
[<CommonParameters>]
Get-SCPhysicalComputerProfile
[-VMMServer <ServerConnection>]
[-ID <Guid>]
[<CommonParameters>]
说明
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
获取所有虚拟磁盘驱动器对象,而不考虑每个虚拟磁盘驱动器对象都与之关联的虚拟机对象或模板对象。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ID
将数字标识符指定为特定对象的全局唯一标识符或 GUID。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 Virtual Machine Manager (VMM) 对象的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-VMMServer
指定 VMM 服务器对象。
类型: | ServerConnection |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
输出
PhysicalComputerProfile
此 cmdlet 返回 PhysicalComputerProfile 对象。