Solution to win10 without Hyper-V

Solution to win10 without Hyper-V

Are you still looking for a way to enable Hyper-v in Windows10 Home Edition? If you want to use Docker for Windows , I suggest you upgrade to the professional version.

How to add Hyper-V to Windows10 Home Edition Copy the following content into an editor or notepad

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

Save it as Hyper-V.cmd

On the system desktop, we find and right-click the [Hyper-V.cmd] file icon, and click in the right-click menu:以管理員身份運行(A)

Then a User Account Control – Windows Command Processor dialog box pops up, we click: Yes

Next, Windows command processing is performed. We wait for the processing to complete.

Enter: Y at the end, the computer will automatically restart and update the configuration. Note: Do not turn off the computer

After the configuration update restart is complete, we go to the Control Panel, All Control Panel Items, Programs and Features, click Enable or disable Windows features, and you will find that we already have the Hyper-v feature

This is the end of this article about the solution to win10 without Hyper-V. For more relevant content about win10 without Hyper-V, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Tutorial on creating a virtual machine using Hyper-V in Windows 10 environment (with pictures)
  • Detailed explanation of how to install centos7 using win10's built-in virtual machine hyper-v

<<:  Directory permissions when creating a container with Docker

>>:  Mysql 8.0.18 hash join test (recommended)

Recommend

Nginx domain name SSL certificate configuration (website http upgraded to https)

Preface HTTP and HTTPS In our daily life, common ...

Detailed explanation of how to install MariaDB 10.2.4 on CentOS7

CentOS 6 and earlier versions provide MySQL serve...

A simple way to achieve scrolling effect with HTML tag marquee (must read)

The automatic scrolling effect of the page can be...

What is COLLATE in MYSQL?

Preface Execute the show create table <tablena...

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode d...

Undo log in MySQL

Concept introduction: We know that the redo log i...

About Tomcat combined with Atomikos to implement JTA

Recently, the project switched the environment an...

Overview of MySQL Statistics

MySQL executes SQL through the process of SQL par...

The actual process of implementing the guessing number game in WeChat applet

Table of contents Function Introduction Rendering...

Example of using MySQL to count the number of different values ​​in a column

Preface The requirement implemented in this artic...

Design Theory: A Method to Understand People's Hearts

<br />Once, Foyin and Mr. Dongpo were chatti...

Summary of ten principles for optimizing basic statements in MySQL

Preface In the application of database, programme...