Beschreibung
diese Kurzanleitung soll die Schritte und die Kommandos darstellen, wie Sie ein AD Object (Client) über die Ferne (Remotely) neustarten können.
PowerShell / CMD Kommando's
Restart-Computer -Force -ComputerName server.domain.local | PowerShell Kommando |
shutdown -m \\server.domain.local -t 0 -r -f | t- Zeitspanne vor der gewünschten Aktion r - Startet den Remotecomputer neu. f - Erzwingt die gewünschte Aktion |
shutdown -? | shutdown -r — reboots the system. shutdown -m — specifies a remote computer to be shutdown/restarted/logged off (\computername) shutdown -s — shuts the system down (and powers it off). shutdown -l — logs the current logged on user off the system. shutdown -t xx — where xx is number of seconds to wait untill shutdown/restart/logoff shutdown -i — launches the GUI version of shutdown tool. shutdown -a — aborts the previous shutdown command. |
Info 1: https://technet.microsoft.com/de-de/library/cc770416.aspx
Info 2: http://davidvielmetter.com/tricks/four-ways-to-remotely-reboot-a-windows-machine
Info 3: https://technet.microsoft.com/en-us/library/cc736451%28v=ws.10%29.aspx
Info 4: https://technet.microsoft.com/de-de/library/hh831755.aspx