Get-SCPendingServiceSetting
获取处于挂起服务状态的服务的挂起服务设置。
语法
Get-SCPendingServiceSetting
[-VMMServer <ServerConnection>]
[-Service] <Service>
[-Name <String>]
[-OnBehalfOfUser <String>]
[-OnBehalfOfUserRole <UserRole>]
[<CommonParameters>]
说明
Get-SCPendingServiceSetting cmdlet 获取处于挂起服务状态的服务的挂起服务设置。
示例
示例 1:从处于挂起服务状态的服务检索所有挂起的服务设置
PS C:\> $Service = Get-SCService -Name "Service01"
PS C:\> Get-SCPendingServiceSetting -Service $Service
第一个命令获取名为 Service01 的服务对象,并将对象存储在$Service变量中。
第二个命令获取 Service01 的挂起服务设置,并向用户显示这些设置。
参数
-Name
指定 Virtual Machine Manager (VMM) 对象的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-OnBehalfOfUser
指定用户名。 此 cmdlet 代表此参数指定的用户运行。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-OnBehalfOfUserRole
指定用户角色。 若要获取用户角色,请使用 Get-SCUserRole cmdlet。 此 cmdlet 代表此参数指定的用户角色运行。
类型: | UserRole |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Service
指定 VMM 服务对象。
类型: | Service |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-VMMServer
指定 VMM 服务器对象。
类型: | ServerConnection |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |