我想编写一个脚本,将“关闭显示器”和“使计算机进入休眠状态”的电源设置更改为“从不”(请参阅随附的屏幕截图)。
我知道如何为上述时间设置时间:
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
感谢Cristian,带有附加参数的官方文档是currently available here