0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windowsのbat(コマンドプロンプト)で高速スタートアップ無効化(完全シャットダウン)

Posted at

やり方

管理者権限が必要 です。

reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d "0" /f

ちゃんと設定できたかの確認も一緒に

rem レジストリーで設定
reg add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d "0" /f

rem 設定変更が反映されたか確認できるように電源オプションのシステム設定画面を開く
control /name Microsoft.PowerOptions /page pageGlobalSettings

参考サイトさん

バージョン

Microsoft Windows [Version 10.0.19045.3803]

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?