原因は、複数あるので人によっては解決方法が違うのでご注意。
ブルースクリーンが発生したら、c:\windows\Minidump にダンプファイルが出力されます。
Windbg で開いて、「!analyze -v」を実行。結果が出力される。
DRIVER_POWER_STATE_FAILURE (9f)
A driver has failed to complete a power IRP within a specific time.
Arguments:
Arg1: 0000000000000003, A device object has been blocking an Irp for too long a time
Arg2: ffffe00127fa1750, Physical Device Object of the stack
Arg3: ffffd001b5ab1990, nt!TRIAGE_9F_POWER on Win7 and higher, otherwise the Functional Device Object of the stack
Arg4: ffffe0012faa9680, The blocked IRP
「!irp ffffe0012faa9680」を実行。
2: kd> !irp ffffe0012faa9680
Irp is active with 4 stacks 2 is current (= 0xffffe0012faa9798)
No Mdl: No System Buffer: Thread 00000000: Irp stack trace.
cmd flg cl Device File Completion-Context
[N/A(0), N/A(0)]
0 0 00000000 00000000 00000000-00000000
Args: 00000000 00000000 00000000 00000000
>[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
0 0 ffffe0012ace7050 00000000 00000000-00000000
Unable to load image \SystemRoot\System32\drivers\Netwtw02.sys, Win32 error 0n2
*** WARNING: Unable to verify timestamp for Netwtw02.sys
*** ERROR: Module load completed but symbols could not be loaded for Netwtw02.sys
\Driver\Netwtw02
Args: 00014400 00000001 00000004 00000002
[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
0 e1 ffffe0012ad4a840 00000000 fffff80240f95d74-ffffe0012f549010 Success Error Cancel pending
\Driver\vwifibus nt!PopRequestCompletion
Args: 00014400 00000001 00000004 00000002
[N/A(0), N/A(0)]
0 0 00000000 00000000 00000000-ffffe0012f549010Args: 00000000 00000000 00000000 00000000
「Netwtw02」が問題っぽい。
デバイスマネージャーで、「Intel Dual Band Wireless-N 7265」を確認して、バージョンを18.21以降にする。18.21以下だったので、ドライバーの更新でアップデートした。
これで様子見。