windows – 如何使用powershell将监视器超时设置为“never”

前端之家收集整理的这篇文章主要介绍了windows – 如何使用powershell将监视器超时设置为“never”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想写一个脚本,它将改变“关闭显示器”和“让计算机进入睡眠状态”到“从不”的电源设置(参见附件截图).
我知道如何使用以下方式设置上述时间:
powercfg -change -monitor-timeout-ac [time]
powercfg -change -monitor-timeout-dc [time]
powercfg -change -standby-timeout-ac [time]
powercfg -change -standby-timeout-dc [time]

但我找不到如何将它设置为“从不”.

我需要使用什么语法?

谢谢!

试试这个:

powercfg -change -monitor-timeout-ac 0

对此,我最喜欢的缺少帮助开关/参数信息的参考:
http://ss64.com/nt/powercfg.html

Setting any value to 0 will set the timeout=Never

原文链接:https://www.f2er.com/windows/363361.html

猜你在找的Windows相关文章