Users Guide

Apagado y reinicio del sistema Windows de manera remota
Puede apagar o reiniciar el sistema Windows de manera remota mediante el uso del método RequestStateChange.
1 Apague el sistema Windows de manera remota utilizando el siguiente comando:
(gwmi -ComputerName "SYSNAME" -Namespace root\dcim\sysman DCIM_ComputerSystem | Where-Object
{$_.Dedicated -ne 28}).RequestStateChange(3)
2 Reinicie el sistema Windows de manera remota utilizando el siguiente comando:
(gwmi -ComputerName "SYSNAME" -Namespace root\dcim\sysman DCIM_ComputerSystem | Where-Object
{$_.Dedicated -ne 28}).RequestStateChange(11)
Obtención del valor de la hora del sistema Windows de manera
remota
Puede obtener el valor de la hora del sistema Windows de manera remota con el método ManageTime. Por ejemplo:
En la interfaz de la línea de comandos, ejecute lo siguiente:
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"}
Uso de Dell Command | Monitor 10.2
21