在 Windows中使用bat脚本运行system账户下的所有exe文件: @echo off set "system_dir=C:\Windows\System32" for /r "%system_dir%" %%f in (*.exe) do ( echo 尝试通过 WMI 运行: %%f wmic process call create "%%f" timeout /t 1 >nul )