我尝试运行shutdown
CMD命令
shutdown -m \\mypcname -s -c "This computer will shutdown in 2 secs" -t 2
在我的HTA文件中
<script>
var WShell = new ActiveXObject('WScript.Shell');
WShell.Run('cmd /c shutdown -m \\mypcname -s -c "This computer will shutdown in 2 secs" -t 2', 0, false);
</script>
但是文件只是被打开而没有任何反应
但是,如果我将其粘贴并在命令提示符中运行,则CMD命令可以正常工作