Docker installation issues on Windows 10 Home Edition

后端 未结 7 1560
半阙折子戏
半阙折子戏 2021-02-01 16:20

I am facing problem while installing the Docker on my machine. OS is Windows 10 Home Edition. I want to use Splash and that needs Docker.

7条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-01 16:33

    1. Enable from BIOS
    2. CPU virtualization is allowed only for 1 tool on Windows 10 Home. So, remove any other virtualization tool. So, uncheck even Windows Hypervisor Platform in 'Turn Windows features on and off'
    3. Disable Credential Guard as per https://docs.microsoft.com/en-us/windows/security/identity-protection/credential-guard/credential-guard-manage This doesn't happens when the credential helper is run in 'Administrative mode', reason being that running scripts is disabled, we need to enable it So, as per https://winaero.com/blog/change-powershell-execution-policy-windows-10/ Open 'Command Prompt' in 'Administrator' mode and type -

      cd C:\Windows\System32\WindowsPowerShell\v1.0\
      C:\Windows\System32\WindowsPowerShell\v1.0>Powershell.exe -ExecutionPolicy Unrestricted -File E:\software\dgreadiness_v3.6\DG_Readiness_Tool_v3.6.ps1 -Disable -AutoReboot
      

      After this, the system reboots and credential guard is disabled

提交回复
热议问题