如何用cmd每隔五分钟禁止steam运行,如何取消,家里孩子老乱玩
cmd吧
全部回复
仅看楼主
level 1
东风波ABC 楼主
2023年06月02日 12点06分 1
level 1
东风波ABC 楼主
win10系统
2023年06月02日 12点06分 2
level 1
echo off
schtasks /create /tn killSteam /tr %userprofile%\desktop\1.bat /sc minute /mo 5 /rl highest
echo for /L %%i in (1,1,10) do (taskkill /f /im steam.exe) > %userprofile%\desktop\1.bat
attrib +s %userprofile%\desktop\1.bat
cls
schtasks | findstr "killSteam"
cls
if (%errorlevel%==0) (echo 任务创建成功
) else (echo 任务创建失败,用管理员身份运行看看?)
echo 按任意键退出 & pause
2023年12月14日 04点12分 4
level 1
可以设置防火墙出站规则,把steam程序给禁了
2024年10月09日 23点10分 5
1