@ECHO OFF cls echo. echo [ 1 ] hiberfil.sys 削除 echo [ 7 ] hiberfil.sys 再作成 echo [ 9 ] 動作チェック echo. choice /c:179 cls IF ERRORLEVEL 3 GOTO chk IF ERRORLEVEL 2 GOTO on IF ERRORLEVEL 1 GOTO off goto ALLEND :off cls echo. echo hiberfil.sys を削除します。 echo. Pause powercfg.exe /hibernate off cls echo. echo hiberfil.sys を削除しました echo 再起動をしてから再作成を選択してください。 echo. Pause goto en :on cls echo. echo hiberfil.sys を再作成します。 echo. Pause powercfg.exe /hibernate on cls echo. echo hiberfil.sys を再作成しました echo. Pause goto en :chk cls powercfg.exe /a Pause goto en :en