Windows 关机脚本未运行

Windows 关机脚本未运行

我有一个简单的 .bat 脚本,我想让 Windows 在关机时运行它

关机脚本.bat

@echo off
title Shutdown script
curl --silent --output nul --show-error --fail -m 0.5  --digest "http://192.168.0.158/shutdown

我在用group policy > Computer Configuration > Windows settings > Scripts > shutdown > script > add > C:\Windows\System32\GroupPolicy\Machine\Scripts\Shutdown\shutdown script.bat

当我关闭计算机时什么也没有发生。我可以确认脚本正在运行,因为双击脚本可以毫无问题地执行它。

我也尝试过使用group policy > User Configuration > Windows settings > Scripts > logoff > script > add > C:\Windows\System32\GroupPolicy\User\Scripts\Logoff\shutdown script.bat

当我关闭计算机时,它仍然没有执行相同的操作。有什么想法吗?

相关内容