Users Guide

Table Of Contents
1. 使用下列命令遠端關閉 Windows 系統:
(gwmi -ComputerName "SYSNAME" -Namespace root\dcim\sysman DCIM_ComputerSystem | Where-
Object {$_.Dedicated -ne 28}).RequestStateChange(3)
2. 使用下列命令遠端重新 Windows 系統:
(gwmi -ComputerName "SYSNAME" -Namespace root\dcim\sysman DCIM_ComputerSystem | Where-
Object {$_.Dedicated -ne 28}).RequestStateChange(11)
遠端取得 Windows 系統上的系統時間
可以使用 ManageTime 方法遠端取得 Windows 系統的系統時間。例如:
在命令列介面中,執行下列命令:
a. $cred = Get-Credential
b. $session = New-CimSession -ComputerName "Server01" -Credential $cred
c. Get-CimInstance -CimSession $session -Namespace root\dcim\sysman -ClassName DCIM_TimeService
| Invoke-CimMethod -MethodName ManageTime -Arguments @{GetRequest="TRUE"}
20 使用 Dell Command | Monitor 10.3