NotePublic/Software/System/Windows/Windows10/Power/Win10_电源管理.md

36 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Win10 电源管理
使用 powercfg 命令可控制 Windows 系统的电源管理功能,比如启用或关闭:休眠、睡眠、混合睡眠等功能。
## 1. 报告系统上可用的睡眠状态
进入 CMD 输入以下命令:
```bash
powercfg /A
```
S1\S2\S3 指主板 ACPI 级别,一般分为 6 级:
- S0正常工作就是正常的运行状态
- S1处理器CPU停止工作唤醒时间0秒该模式下屏幕关闭、显示信号关闭硬盘停转进入待命状态
- S2Power Standby处理器CPU关闭唤醒时间0.1秒和S1模式相差不大。
- S3Suspend to RAM除了内存外的设备都停止工作唤醒时间0.5秒;
- S4Suspend to Disk内存中的信息写入硬盘所有部件停止唤醒时间30秒
- S5Shutdown完全关闭就是平时的关机状态。
## 2. 启用/关闭休眠功能
```bash
powercfg -h on
powercfg -h off
```
如果开启了休眠功能,需要重启系统,然后进入:
- “控制面板->电源选项->选择电源按钮的功能->更改当前不可用的设置”
并勾选:
- “**休眠**:显示在‘电源’菜单中”。