2
2

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 5 years have passed since last update.

Windows10 Pro で Hyper-V が動かない場合の対処

Last updated at Posted at 2019-01-04

Docker For Windows を使いたい場合

Docker For Windowsを使う場合、Hyper-Vが必要になりますが、端末によってはHyper-Vが有効になっていません。

コントロールパネルからWindows既定のプログラム内にある Hyper-V を有効にして再起動すれば、Dockerを使う準備が完了します。
ですが端末によってはコントロールパネルやWindows Power ShellからHyper-Vを有効にしようとしても 「構成レジストリキーを読み取れません」のエラーとなり、実行できません。

この場合、以下の方法で対処可能でした。

  • コマンドプロンプトを管理者で実行
  • 以下のコマンドを1行ずつ実行する
SC config wuauserv start= auto
SC config bits start= auto
SC config cryptsvc start= auto
SC config trustedinstaller start= auto
  • 再起動を実施

場合によっては再起動中にWindowsの再構成が始まります。

参考文献

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?