bat脚本_关闭防⽕墙和系统休眠时间⼀、关闭防⽕墙
关闭专⽤⽹络防⽕墙
netsh firewall set opmode mode=disable profile=ALL
关闭来宾或公⽤⽹络防⽕墙
netsh firewall set opmode mode=disable
⼆、设置系统休眠时间
设置计算机休眠时间‘从不’
powercfg -change -standby-timeout-ac 0
设置计算机休眠时间‘15分钟’
powercfg -change -standby-timeout-ac 15
设置关闭显⽰器‘从不’
⽅法⼀:powercfg -x -monitor-timeout-ac 0
网吧的防火墙怎么关⽅法⼆:powercfg -change -monitor-timeout-ac 0
设置关闭显⽰器‘15分钟’
powercfg -change -monitor-timeout-ac 15
三、函数封装
新建⼀个txt⽂档,把以下信息复制到⽂本中,然后修改⽂档后缀为bat,使⽤管理员运⾏。
@echo off
call:Firewall
call:Dormant
pause
:Firewall
netsh firewall set opmode mode=disable profile=ALL
netsh firewall set opmode mode=disable
echo ---------------------------------
echo防⽕墙已关闭
echo ---------------------------------
goto:eof
:Dormant
powercfg -change -standby-timeout-ac 0
powercfg -change -monitor-timeout-ac 0
echo ---------------------------------
echo计算机休眠时间和关闭显⽰器已设置为从不
echo ---------------------------------
goto:eof
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论