Questions tagged [hyper-v]

Hyper-V is the Microsoft Windows hypervisor starting in Windows Server 2008 R2 and also running on Hyper-V Server 2008, Hyper-V Server 2012, Windows Server 2012, and as an optional component of Windows 8.

The Hyper-V role lets you create and manage virtualized computing environments. Hyper-V is built into recent Windows operating systems as an optional feature and includes two independent components:

  1. The management components for managing Hyper-V hosts.
    Management tools include Hyper-V Manager for virtual machine management, Virtual Machine Connection for interactive connections to the virtual machine UI, and Hyper-V-specific cmdlets for Windows PowerShell.

  2. The virtualization platform for running virtual machines.
    Platform tools include the hypervisor, WMI provider, and other necessary virtualization components such as the virtual machine bus (VMbus), virtualization service provider (VSP) and virtual infrastructure driver (VID).

If you want to run and manage virtual machines on your machine you will need to enable both the platform and management tools. Very few people enable one without the other.

If you use Server Manager to install the Hyper-V role, the management tools are included unless you specifically exclude them. If you use Windows PowerShell to install the Hyper-V role, the management tools are not included by default. To install the tools, use the parameter –IncludeManagementTools. For instructions about installing the Hyper-V role, see Install Hyper-V and Configure a Virtual Machine.

Hyper-V Documentation:

1517 questions
0
votes
1 answer

Virtualization and Deployments / Upgrades

I'm hoping someone may be able to help point me in the right direction. We have an application suite that currently spans 4 virtual machines on an installation. We support both VMWare and HyperV. Knowing each developer has there own setup, each…
user815809
  • 351
  • 5
  • 24
0
votes
1 answer

c# remote powershell Hyperv cmdlet start-vm -Vm

i am trying to pass the VM object of that powershell command: Start-Vm -Vm I would like to do this by c# code. So i create a remote runspace and so on: class RemotePowershell { private const string SHELL_URI =…
Paca
  • 95
  • 2
  • 10
0
votes
1 answer

How can I know the Hyper-V VM's last poweroff time

I am looking for a way to know when is the last time Hyper-V VM powered off. What I would like to do is, check for the storace space used by Hyper-V VMs that has not been powered on for a long time. I checked for other questions and found that with…
ululu7
  • 11
  • 1
0
votes
2 answers

How can I configure a Client Hyper-V (on Windows 8) to connect to the host and other VMs without a network connection?

I'm trying to develop an interface to an application that doesn't run on Windows 8. Hence, I've created a VM with Windows 7 running the integration service and another service running on the Windows 8 host. I have three Virtual Network scenarios…
maevvamgr
  • 31
  • 1
  • 7
0
votes
1 answer

Is it possible to have a separate internal domain forest while still being connected to the corp net?

If this has been answered or is totally newb, I apologize but I am a programmer and not a network guy. Please point me in the right direction. What I am trying to do is create a separate forest called something like mydomain.com as a virtual domain,…
LLL
  • 1,085
  • 8
  • 16
0
votes
1 answer

how to get hyper-v host processor info in guest machine

My problem is in guest machine how to get hyper-v host processor info. I don't want to use wmi for it need close the host machine firewall. Any help will be appreciate.
RichardTao
  • 23
  • 5
0
votes
2 answers

Hypervisor Issue WP8 Emulator

after trying to start my first WP8 App I got an error saying that it could not create a virtual switch. So went to my BIOS and made sure all options are set according to the microsoft article about the prerequisites for running the WP8 Emulator. But…
0
votes
1 answer

Windows 8 Hyper-V - Development VM - VirtualBox better?

I would like to know how you use hyper-v and work inside your VM. I am developer, and used to working with VM for my development environments. Until now, I was working with VirtualBox. Since I have moved to Windows 8, I wanted to try hyper-v but the…
user1785450
  • 1
  • 1
  • 1
0
votes
1 answer

Is it possible to use Windows Phone 8 Emulator outside of current PC

I've installed Windows 8 as guest in Hyper-V VM. Tried to launch WP8 emulator and failed. So I have a question: Is it possible to reuse WP8 emulators in host system to develop inside virtual machine?
AlfeG
  • 1,475
  • 4
  • 18
  • 33
0
votes
2 answers

Common API for ESX, Hyper-V, Virtual Server?

ESX, Hyper-V, and Virtual Server all have their own, non-interoperable APIs. Do you know of any library that unifies these? Thanks, J.
John
0
votes
1 answer

Pass Memory in GB Using Import-CSV Powershell to New-VM in Hyper-V Version 3

I created the below function to pass memory from a csv file to create a VM in Hyper-V Version 3 Function Install-VM { param ( [Parameter(Mandatory=$true)] [int64]$Memory=512MB ) $VMName = "dv.VMWIN2K8R2-3.Hng" $vmpath = "c:\2012vms" New-VM…
PowerShell
  • 1,991
  • 8
  • 35
  • 57
0
votes
1 answer

How to minimize memory usage and install Hyper-V role on Windows Server 2008 R2 with SQL Server already installed

How to install and setup Hyper-V role on Windows Server Std. 2008 R2 with SQL Server 2012 already installed. SQL Server is the priority on this machine. Only one virtual machine will be installed and used to test disaster recovery restores from…
0
votes
2 answers

WP8 emulator stopped working

Ok so I was working fine with the WP8 emulator but suddenly after going into Hyper-V manager it stopped working, didn't make any change and even deleted the virtual machine to be created again on debug but no luck I have tried with the various…
Keoz
  • 394
  • 2
  • 16
0
votes
2 answers

Hyper-V RequestStateChange returns undocumented value

I'm attempting to programmatically start a Hyper-V VM using C#'s System.Management API. I've had great success creating and configuring the VM, however starting the VM has proven elusive. I get a Msvm_ComputerSystem object, using a helper method to…
Mitchless
  • 146
  • 5
0
votes
1 answer

how to get WMI events?

How to list the WMI events registered to Msvm_ComputerSystem class. I have created a vm and have an event to registerpoweronEvent. now i want to list the events registered. please help in this.