From 825843e0104dcd7db99d6a18f09650a1fc12adc5 Mon Sep 17 00:00:00 2001 From: lion187 Date: Tue, 23 Jul 2019 22:15:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20Win10=20=E7=94=B5=E6=BA=90?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Windows/Windows10/Power/Win10_电源管理.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Software/OperatingSystem/Windows/Windows10/Power/Win10_电源管理.md diff --git a/Software/OperatingSystem/Windows/Windows10/Power/Win10_电源管理.md b/Software/OperatingSystem/Windows/Windows10/Power/Win10_电源管理.md new file mode 100644 index 0000000..014ee08 --- /dev/null +++ b/Software/OperatingSystem/Windows/Windows10/Power/Win10_电源管理.md @@ -0,0 +1,18 @@ +# Win10 电源管理 + +## 报告系统上可用的睡眠状态 + +进入 CMD 输入以下命令: + +```sh +powercfg /A +``` + +S1\S2\S3 指主板 ACPI 级别,一般分为 6 级: + +* S0:正常工作,就是正常的运行状态; +* S1:处理器(CPU)停止工作,唤醒时间:0秒,该模式下屏幕关闭、显示信号关闭,硬盘停转进入待命状态; +* S2:Power Standby,处理器(CPU)关闭,唤醒时间:0.1秒,和S1模式相差不大。 +* S3:Suspend to RAM,除了内存外的设备都停止工作,唤醒时间:0.5秒; +* S4:Suspend to Disk,内存中的信息写入硬盘,所有部件停止,唤醒时间:30秒; +* S5:Shutdown,完全关闭,就是平时的关机状态。