基于服务器/客户端的 PC 关机解决方案

基于服务器/客户端的 PC 关机解决方案

我需要从一个中央应用程序关闭本地网络中的一组 Windows PC,但由于某些原因,我无法使用 shutdown.exe 远程命令。但是,我对网络中所有 PC 都拥有管理员权限。

对我来说最好的解决方案是在需要关闭的电脑上安装一个客户端。

感谢您的帮助!

答案1

由于您标记为 Windows 7,因此您可以使用 Powershell:

Stop-Computer –computer computerName –credential domain\administrator -force

在计算机列表中使用它:

Stop-Computer -computer (Get-Content C:\temp\Desktops.txt) –credential domain\administrator -force

有关 Stop-Computer 的更多信息

相关内容