Enable nested virtualization on Windows 10 Hyper-V for the root OS
Is it possible to enable nested virtualization for Windows 10 Hyper-V, for the root environment? The root Windows environment cannot run other virtualization software like VMWare without it.
windows windows-10 virtualization hyper-v
add a comment |
Is it possible to enable nested virtualization for Windows 10 Hyper-V, for the root environment? The root Windows environment cannot run other virtualization software like VMWare without it.
windows windows-10 virtualization hyper-v
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26
add a comment |
Is it possible to enable nested virtualization for Windows 10 Hyper-V, for the root environment? The root Windows environment cannot run other virtualization software like VMWare without it.
windows windows-10 virtualization hyper-v
Is it possible to enable nested virtualization for Windows 10 Hyper-V, for the root environment? The root Windows environment cannot run other virtualization software like VMWare without it.
windows windows-10 virtualization hyper-v
windows windows-10 virtualization hyper-v
asked Sep 14 '17 at 12:04
David Pfeffer
3622415
3622415
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26
add a comment |
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26
add a comment |
1 Answer
1
active
oldest
votes
Three is possible to enable nested virtualization on exact stopped machine by PowerShell command with Administrator privileges:
Set-VMProcessor -VMName deb9 -ExposeVirtualizationExtensions $true
where deb9
is a stopped virtual machine name which can be taken from Hyper-V management console:
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has optionExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM
– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
|
show 4 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1250276%2fenable-nested-virtualization-on-windows-10-hyper-v-for-the-root-os%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Three is possible to enable nested virtualization on exact stopped machine by PowerShell command with Administrator privileges:
Set-VMProcessor -VMName deb9 -ExposeVirtualizationExtensions $true
where deb9
is a stopped virtual machine name which can be taken from Hyper-V management console:
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has optionExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM
– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
|
show 4 more comments
Three is possible to enable nested virtualization on exact stopped machine by PowerShell command with Administrator privileges:
Set-VMProcessor -VMName deb9 -ExposeVirtualizationExtensions $true
where deb9
is a stopped virtual machine name which can be taken from Hyper-V management console:
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has optionExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM
– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
|
show 4 more comments
Three is possible to enable nested virtualization on exact stopped machine by PowerShell command with Administrator privileges:
Set-VMProcessor -VMName deb9 -ExposeVirtualizationExtensions $true
where deb9
is a stopped virtual machine name which can be taken from Hyper-V management console:
Three is possible to enable nested virtualization on exact stopped machine by PowerShell command with Administrator privileges:
Set-VMProcessor -VMName deb9 -ExposeVirtualizationExtensions $true
where deb9
is a stopped virtual machine name which can be taken from Hyper-V management console:
edited Dec 22 at 6:05
answered Dec 16 at 4:53
Oleg Neumyvakin
1094
1094
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has optionExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM
– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
|
show 4 more comments
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has optionExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM
– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
This doesn't answer the question of how to do this for the root environment.
– David Pfeffer
Dec 17 at 14:43
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
@DavidPfeffer could you please explain what is "root environment" for you?
– Oleg Neumyvakin
Dec 17 at 16:38
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
The root environment is Windows 10 w/ Hyper-V.
– David Pfeffer
Dec 18 at 20:06
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has option
ExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer so command line in my answer is doing exactly this. You have host OS(root environment is Windows 10 w/ Hyper-V) which has VMs which has option
ExposeVirtualizationExtensions
and this option have to be set to enable nested virtualization fo this VM– Oleg Neumyvakin
Dec 19 at 6:27
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
@DavidPfeffer VMware doesn't work in same time with Hyper-V, because of Guard Credentials communities.vmware.com/thread/600620
– Oleg Neumyvakin
Dec 19 at 6:29
|
show 4 more comments
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1250276%2fenable-nested-virtualization-on-windows-10-hyper-v-for-the-root-os%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you please update your hardware details.
– vembutech
Sep 14 '17 at 14:08
@vembutech What does my hardware have to do with whether or not a product has a feature?
– David Pfeffer
Sep 14 '17 at 20:26