1
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?

この不親切な手順に救援を 其の5:GPUリセットコマンドを1行で

Posted at

画面が真っ黒や真っ白になった時に試す作業として
GPUリセットのショートカット
[ Win ] + [ Ctrl ] + [ Shift ] + [ B ]
が紹介されています

これをコマンドで行う方法として
PowerShell を 起動してから
pnputil /enum-devices /class display
で ディスプレイドライバ の インスタンス ID を 表示させ
pnputil /restart-device "表示された インスタンス ID を コピペ"
と言うのも紹介されています

コマンド版は手順が面倒な割りに
役に立つかどうかは不明ですが

「ファイル名を指定して実行」に貼り付ける版を作りました
管理者権限が必要な場合は
「ファイル名を指定して実行」に貼り付けた後に
[ Ctrl ] + [ Shift ] + [ Enter ]
で実行して下さい

cmd /c,for /f "tokens=3 delims= "  %G in ('pnputil /enum-devices /class display ^| find "\"') do @pnputil /restart-device  "%G" & pause

無題2.jpg

実行すると画面がフラッシュした後に
このような画面が表示されるので
コマンドプロンプト画面を×で閉じるか
コマンドプロンプト画面で何かキーを押せば終了します

結果表示は要らない、リセットだけ行いたい場合は、こちらです
※ Pause文が無いだけです

cmd /c,for /f "tokens=3 delims= "  %G in ('pnputil /enum-devices /class display ^| find "\"') do @pnputil /restart-device  "%G"
1
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
1
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?