Answers:
答对了!!!我似乎已通过此reddit帖子成功解决了类似问题:是否有其他人注意到他们的计算机在更新到Windows 10后不再自动进入睡眠状态?
解决步骤:
如Harrymc所提到的,您可以使用该powercfg -energy
命令获取有关其能耗诊断的报告。结果可能表明错误,警告或其他有用信息,并存储在此处:C:\Windows\System32\energy-report.html
例如,我的摘要报告是:
Energy efficiency problems were found.
9 Errors
24 Warnings
43 Informational
See C:\WINDOWS\system32\energy-report.html for more details.
更详细:
Analysis Results
Errors
System Availability Requests:System Required Request
The program has made a request to prevent the system from automatically entering sleep.
Requesting Process
\Device\HarddiskVolume4\Program Files (x86)\Connectify\Connectifyd.exe
System Availability Requests:Execution Required Request
The program has made a request for execution required.
Requesting Process
\Device\HarddiskVolume4\Users\ratxavier\PortableApps\GoogleChromePortable\App\Chrome-bin\chrome.exe
System Availability Requests:System Required Request
The device or driver has made a request to prevent the system from automatically entering sleep.
Requesting Driver Instance
HDAUDIO\FUNC_01&VEN_8086&DEV_2807&SUBSYS_80860101&REV_1000\4&353e01dc&0&0001
Requesting Driver Device
Intel(R) Display Audio
System Availability Requests:System Required Request
A kernel component has made a request to prevent the system from automatically entering sleep.
USB Suspend:USB Device not Entering Selective Suspend
This device did not enter the USB Selective Suspend state. Processor power management may be prevented when this USB device is not in the Selective Suspend state. Note that this issue will not prevent the system from sleeping.
Device Name
USB Input Device
Host Controller ID
PCI\VEN_8086&DEV_9C31
Host Controller Location
PCI bus 0, device 20, function 0
Device ID
USB\VID_045E&PID_0797
Port Path
1
USB Suspend:USB Device not Entering Selective Suspend
This device did not enter the USB Selective Suspend state. Processor power management may be prevented when this USB device is not in the Selective Suspend state. Note that this issue will not prevent the system from sleeping.
Device Name
USB Composite Device
Host Controller ID
PCI\VEN_8086&DEV_9C26
Host Controller Location
PCI bus 0, device 29, function 0
Device ID
USB\VID_19D2&PID_FFF1
Port Path
1,2
USB Suspend:USB Device not Entering Selective Suspend
This device did not enter the USB Selective Suspend state. Processor power management may be prevented when this USB device is not in the Selective Suspend state. Note that this issue will not prevent the system from sleeping.
Device Name
USB Root Hub
Host Controller ID
PCI\VEN_8086&DEV_9C26
Host Controller Location
PCI bus 0, device 29, function 0
Device ID
USB\VID_8086&PID_9C26
Port Path
CPU Utilisation:Processor utilisation is high
The average processor utilisation during the trace was high. The system will consume less power when the average processor utilisation is very low. Review processor utilisation for individual processes to determine which applications and services contribute the most to total processor utilisation.
Average Utilisation (%)
21.73
Platform Power Management Capabilities:PCI Express Active-State Power Management (ASPM) Disabled
PCI Express Active-State Power Management (ASPM) has been disabled due to a known incompatibility with the hardware in this computer.
Warnings
Platform Timer Resolution:Platform Timer Resolution
The default platform timer resolution is 15.6 ms (15625000 ns) and should be used whenever the system is idle. If the timer resolution is increased, processor power management technologies may not be effective. The timer resolution may be increased due to multimedia playback or graphical animations.
Current Timer Resolution (100 ns units)
5003
Maximum Timer Period (100 ns units)
156250
Platform Timer Resolution:Outstanding Timer Request
A program or service has requested a timer resolution smaller than the platform maximum timer resolution.
Requested Period
10000
Requesting Process ID
7800
Requesting Process Path
\Device\HarddiskVolume4\Users\ratxavier\PortableApps\GoogleChromePortable\App\Chrome-bin\chrome.exe
Platform Timer Resolution:Outstanding Timer Request
A program or service has requested a timer resolution smaller than the platform maximum timer resolution.
Requested Period
10000
Requesting Process ID
7908
Requesting Process Path
\Device\HarddiskVolume4\Users\ratxavier\PortableApps\GoogleChromePortable\App\Chrome-bin\chrome.exe
输入powercfg -requests
到一个命令提示(可能必须升高)。应该告诉你什么编程使你的PC保持唤醒。对于我的报告,我得到:
C:\WINDOWS\system32>powercfg -requests
DISPLAY:
None.
SYSTEM:
[PROCESS] \Device\HarddiskVolume4\Program Files (x86)\Connectify\Connectifyd.exe
[DRIVER] Intel(R) Display Audio (HDAUDIO\FUNC_01&VEN_8086&DEV_2807&SUBSYS_80860101&REV_1000\4&353e01dc&0&0001)
An audio stream is currently in use.
[DRIVER] Legacy Kernel Caller
AWAYMODE:
None.
EXECUTION:
[PROCESS] \Device\HarddiskVolume4\Users\ratxavier\PortableApps\GoogleChromePortable\App\Chrome-bin\chrome.exe
Playing audio
PERFBOOST:
None.
ACTIVELOCKSCREEN:
None.
决议案
覆盖编程使窗口保持清醒。使用命令
powercfg -REQUESTSOVERRIDE
告诉Windows忽略使它保持清醒状态的所有内容,然后进入睡眠状态。
例如,根据我的报告,我不得不覆盖Kernel Driver
and Connectifyd
过程。
注意! 您不必覆盖它,因为给定的驱动程序可能会由于使用中的PC而使PC保持唤醒状态,一个很好的例子是上述的英特尔音频驱动程序,它停止了不再活动的音频。
我的罪魁祸首是过程- Connectifyd
。
尽管如此,还是要重写此命令:
powercfg -REQUESTSOVERRIDE DRIVER "The Name of Your Device" SYSTEM
powercfg -REQUESTSOVERRIDE PROCESS "The name of Process" SYSTEM
例如
powercfg -REQUESTSOVERRIDE PROCESS "\Device\HarddiskVolume4\Program Files (x86)\Connectify\Connectifyd.exe" SYSTEM
学分:Simplifyze(Reddit);其他人是否注意到他们的计算机在更新到Windows 10后不再自动进入睡眠状态?
似乎是由于允许USB Root Hub唤醒您的PC所致。您会尝试取消选中该框以查看其是否有效吗?步骤如下:
让我们知道这是否有效!
检查您的powercfg -energy
报告没有发现任何异常。据报告,您的系统具有休眠功能(S4),并且没有明显的有问题的设备(尽管最好在不使用计算机或播放音乐的情况下进行安装)。
以下是一些建议,可能会有所帮助。
防止设备在设备管理器中唤醒计算机,尤其是网络适配器。您可以通过运行列出所有这些设备powercfg -devicequery wake_armed
。
通过sfc / scannow检查Windows是否损坏。如果发现并纠正了问题,则不要以为已完全解决问题。