Click here to Skip to main content
15,902,741 members
Everything / Hyper V

Hyper V

Hyper-V

Great Reads

by Intel
In this article I'll show how to create a runnable image of Yocto and how to test it inside QEMU, a basic software emulator; and following how to run it inside an Hypervisor, like Microsoft Hyper-V on Windows.
by Sacha Barber
I am going to obligate myself to writing a small series of posts of Kubernetes. In this entry, we will focus on: What is Kubernetes / Installing Minikube
by Apriorit Inc, andrew_lyakhov
In this article, we examine the problems of program control of the Microsoft Hyper-V hypervisor with the help of the C++ language and WMI technology.
by ToughDev
Hyper-V & Hardware Assisted Virtualization

Latest Articles

by ToughDev
Hyper-V & Hardware Assisted Virtualization
by Sacha Barber
I am going to obligate myself to writing a small series of posts of Kubernetes. In this entry, we will focus on: What is Kubernetes / Installing Minikube
by Intel
In this article I'll show how to create a runnable image of Yocto and how to test it inside QEMU, a basic software emulator; and following how to run it inside an Hypervisor, like Microsoft Hyper-V on Windows.
by Apriorit Inc, andrew_lyakhov
In this article, we examine the problems of program control of the Microsoft Hyper-V hypervisor with the help of the C++ language and WMI technology.

All Articles

Sort by Score

Hyper V 

18 Feb 2016 by Intel
In this article I'll show how to create a runnable image of Yocto and how to test it inside QEMU, a basic software emulator; and following how to run it inside an Hypervisor, like Microsoft Hyper-V on Windows.
23 Jan 2014 by Ron Beyer
E.F Nijoeber is on the right track...Windows always keeps some free memory, but in low memory systems it will use the page file much more aggressively. Since the page file is disk based, you are probably having a lot of disk reads/writes. Because only one application (or VM) can...
23 Jan 2014 by phil.o
I agree with Ron : IMHO your problem is not the memory, or the processors, but the disk.If I get you right, you have a single 2 TB / 7.2K / SATA disk drive?For an hypervisor running several virtual machines, I recommend :- a true RAID extension card with its own battery- at least...
7 Aug 2017 by Andreas Mertens
After a lot of sifting through solutions found online and trying them out, I found the following: Attaching a VHD To A VM Using The Hyper-V WMI V2 Namespace – Taylor Brown's Blog[^] It is written for PowerShell, but it shows exactly how to allocate the resources. The issue I see with the...
19 Aug 2017 by Richard MacCutchan
See Introduction to Hyper-V on Windows 10 | Microsoft Docs[^].
16 Dec 2017 by joris.spriet
Hi, instead of rolling your own solution in C#, you might have a look at this: Full Backup of Hyper-V Virtual Machines - PowerShell Script (Update 3.7)[^] More info also here: Backing Up and Restoring Virtual Machines[^] and here: Exporting a Snapshot of a Virtual Machine (C#)[^]
14 Jul 2023 by OriginalGriff
If you got the instructions from Youtube and they don't work, the first place to start looking for a solution is the forum on Youtube for that video. Asking here means we have to watch the whole video first to try and work out what you were...
23 Jan 2014 by Nilesh bhope
Hi I have following dedicated server,Dual Intel Xeon 56392.13Ghz - 2 Processors 12 Cores / 24 Threads24GB DDR3 RAM2TB SATA|| 7200RPM1Gb Dedicated Port.Windows Server 2008 R2 64-Bit Standard Edition.I have configured HYPER-V on this server. Right now i have added few virtual...
23 Jan 2014 by E.F. Nijboer
I would really try to increase memory available to the VM's. You can use dynamic memory (check links). Even though it looks like memory isn't used, it is keeping some memory free for unpredicted occasions and therefor won't use all of it....
22 Oct 2014 by jagdish vaghela
I am install the windows phone 8 sdk clearly but there is no problem in installation but when I am trying to connect the internet from the emulator,ny windows phone 8 emulator cant connect to the internet. every thing is good but just a problem of windows phone emulator to connect the internet
2 Mar 2015 by Ambati Dilip
Hello, In my system my hyper-v is used to windows mobile for visual studio. i have vmware, when i open it says that Hyper-v is not compiatable. always i have to go to control panel add/remove futures uncheck hyper-v, if i want to enable it again and on internet and install futures.
12 Apr 2015 by singaraprabu
We have written a filter driver to track Hyper-V CSV volumes in order to track the modifications in those volumes for backup purpose. When the Hyper-V host is running, we are able to attach the CSV volumes from the driver without any issues. But during Hyper-V host startup, our driver failed to...
21 Jan 2016 by kmkmahesh
GuestIntrinsicExchangeItems and GuestExchangeItems are WMI properties of KvpExchangeComponent they are used to exchange the data through registry between Hyper-V host and Guest operating systems.Is there any alternative to do the same for VirtualBox and VMware to read Guest registry from...
30 Jan 2016 by Member 12297411
I opened a project I get the following error from Windows Phone to wonder what solutions can you help it?"Windows Phone Emulator is unable to set the VHD on the machine"I use the version of Visual Studio 2015 is the Community.Screenshot Image Link;...
16 Sep 2016 by Brady Kelly
I've added an external network switch to Hyper-V that connects to my wifi router. Then, when I install Debian, and set the network adaptor during install, Debian still has no internet access at all. Is there a task or settings I am missing or something?What I have tried:I have tried...
17 Jul 2017 by Member 13262965
I need to read the SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters\PhysicalHostName Registry Key to get the Host Name of a Hyper V VM. I can connect and also retrieve alot of information trough wmi in other parts of the program, but i stumble if it comes to reading a registry Key :( Im...
16 Jun 2017 by Richard Deeming
Try using the registry classes in the Microsoft.Win32 namespace: Using hive = RegistryKey.OpenRemoveBaseKey(RegistryHive.LocalMachine, m_ComputerName, RegistryView.Default) Using key = hive.OpenSubKey("SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters", False) If key IsNot Nothing...
17 Jul 2017 by Member 13262965
Since nobody seems to be willing to answer i close the question. I didnt found my error so far. I can read all regKeys but the one i want to read.
7 Aug 2017 by Andreas Mertens
I am trying to configure a Hyper-V virtual machine programmatically, start to finish, using only C# and WMI. Because this is on Windows 10, the WMI namespace is virtualization\V2, which is significantly different from the WMI namespace previous to Windows 8. At this point I have the virtual...
6 Aug 2017 by Graeme_Grant
How about this Google Search: c# Programmatically mount a VHD in a hyper-V virtual machine[^] Found this answer: c# - Programmatically attaching a VHD to a remote Hyper-V VM - Stack Overflow[^]
19 Aug 2017 by Dave Kreskowiak
If you want to run the emulator, you have no choice but to upgrade Windows 10 to Pro or above.
16 Dec 2017 by Yesudass Moses
I have 4 HyperV virtual operating systems running on Windows Server 2008 R2 and 2012 Server R2. I am looking for developing a C# Console Application to back up these machines (Exporting as VHD) every week automatically. Is there any way how I can do this? What I have tried: Tried Google but...
12 Jun 2018 by Yunus Bulduk
Hi I am installer Xamarin for Visual Studio but I can't start Hyper-V . İnstall Visual Studio Emulator for Android (İs not start Emulator) My Problem under image .. Thanks for help. What I have tried: https://i.hizliresim.com/7Dky5v.png https://i.hizliresim.com/PDqOmQ.png Alt > ...
20 Nov 2018 by RickZeeland
Maybe you can try the New-SCVMCheckpoint cmdlet, New-SCVMCheckpoint | Microsoft Docs[^]
28 Nov 2018 by User 14026908
Recently we started using new Resilient Change Tracking (RCT 2016) APIs. We are facing issue with QueryChangesVirtualDisk API. We are following steps as mentioned in MSDN. Anyone has any suggestions if it is working for them? PCWSTR changeTrackingId =...
2 Jan 2019 by OriginalGriff
Even if there was, we would not be providing them to you: what you are doing is in breach of at least 2 copyright and licencing agreements, and counts as malicious behaviour. We do not condone, support, or assist in any way with such activities: this is a professional site for professional...
5 Aug 2019 by Member 10307135
My last HD with a working Windows XP, VB6 and DirectX 8.1 recently crashed while trying to make more backup HDs, and all other backup HDs with Windows XP were lost due to fire. The VB6 software took me years to write and debug, so I do not want to start afresh with VB.net, especially as the ease...
4 Aug 2019 by OriginalGriff
Think about it: if you setup a VM on your Win10 machine, you can directly load XP and all the related dev environment on that, and it will work as if it was your original machine (only probably faster as it's likely to have more RAM available, and a much faster processor). It's very unlikely...
5 Aug 2019 by Dave Kreskowiak
Quote: as the ease of code-a-little-test-a-little development for DirectX and COM interactions has still not caught up with VB6. You have that backwards. VB6 hasn't, and never will, catch up with DirectX and COM. Quote: I want to make sure that I buy hardware that will support VB6/DirectX 8. ...
3 Oct 2019 by MikeTheFid
I have downloaded a Windows 10 Pro ISO from My Visual Studio (formerly MSDN) and obtained a license key for it. I cannot figure out a way to install from the ISO. What I have tried: - "Quick Create..." pointing to the ISO file. This ends with a boot loader failure. - creating a "Windows 10...
3 Oct 2019 by RickZeeland
Make sure you choose the correct Generation 2 for the virtual machine. Read details here: How to Create a Virtual Machine Using Windows 10 Hyper-V[^] Here are some alternatives for Hyper-V: desktop-virtualization-solutions[^]
3 Oct 2019 by Gerry Schmitz
I sometimes have better luck with VirtualBox. Oracle VM VirtualBox[^]
3 Oct 2019 by MikeTheFid
Ok, it seems the problem was that I didn't "press any key" fast enough. I now have the installation underway. This video was helpful. The guy said something to the effect of him having to QUICKLY press a key. Thank you to the two people who responded to this question! Very much appreciated.
31 May 2021 by akira1974
Hi everyone, We are dealing with incompatibilities running our applications with gMsa in Windows Server 2016 containers using docker. We are using Windows Server 2019 as the host and hyper-v isolation. Host: Windows Server 2019 10.0.17763 ...
17 Dec 2021 by Member 14992347
I am trying to get the list of virtual machine names, from a local Hyper-V server, with the following code: string _scr = ("Get-VM | Select -ExpandProperty Name"); var _ps = PowerShell.Create(); _ps.AddScript(_scr); Collection _cObj =...
17 Dec 2021 by Empty Coder
Get-VM only works in a PowerShell session run as administrator. When I try your C# code run as an administrator it does print VM names. When I try it without administrator rights I get no output, same as you - but there is an error reported if...
16 Feb 2022 by Haniel Arce Manriquez
Hello I am trying to create a Net 5.0 application for Hyper-v Backup and I would like to use Resilient Change Tracking for backup virtual disk's Blocks changing. I am using a Wrapper to library VirtDisk.h...
13 Jul 2023 by AstroTheDog
Hello there, I am trying to get ram, cpu and disk data from windows server 2012 with a sample code like below; private static void Main(string[] args) { //can you add try catch to this code try { ...
31 Jan 2018 by Sacha Barber
I am going to obligate myself to writing a small series of posts of Kubernetes. In this entry, we will focus on: What is Kubernetes / Installing Minikube
27 May 2010 by Apriorit Inc, andrew_lyakhov
In this article, we examine the problems of program control of the Microsoft Hyper-V hypervisor with the help of the C++ language and WMI technology.
13 Jul 2023 by Dave Kreskowiak
It's telling you the namespace "virtualization\V2" doesn't exist on the machine. You don't have the Hyper-V WMI provider subsystem installed. Go into "Turn Windows Features on or off" to see what you're missing under Hyper-V.
7 May 2023 by ToughDev
Hyper-V & Hardware Assisted Virtualization
12 May 2017 by MJ999
I am trying to apply a snapshot to a hyper V (v2)virtual machine using C# and using the ApplySnapshot Method.https://msdn.microsoft.com/en-us/library/hh850022%28v=vs.85%29.aspxBut I seem to be struggling as there no sample for that method. I would be grateful if someone could help in...
12 May 2017 by EChristensen
Hi MJ999, This example is in VB.NET, but it can easily be translated into C#. In this example, I am applying the most recent snapshot of the virtual machine. To apply a specific snapshot, replace the 'lastSnapshot' with the Msvm_VirtualSystemSettingData instance of the snapshot you wish to...
19 Aug 2017 by Ishan Bhutani
How do I run windows 10 mobile emulator on windows 10 home? It says I need to have hyper-v feature to run windows 10 emulator but hyper-v is available foe only windows 10 pro/education/enterprise. What do I do now? What I have tried: I tried to enable virtualization from BIOS but it does not...
20 Nov 2018 by viki1987
Hi, I tried import module in C# with dot net version 4.5 and SCVMM 2012 r2 PowerShell powershell = PowerShell.Create(); powerShell.Commands.AddCommand("Import-Module").AddParameter("Name", "virtualmachinemanager"); powerShell.Invoke(); // This throws exception. What I have tried: Even tried...
14 Jul 2023 by AstroTheDog
Hi, I tried to add hyper-v feature to my windows server 2012 but got an already running error. So I did some research and found this (How to fix hyper-v cannot be installed- a hypervisor is already running - YouTube[^]) What I have tried: When...