Tagged Questions
The hyper-v tag has no wiki summary.
6
votes
6answers
2k views
VMware or Hyper-V for Developers
I'm looking to replace a couple of machines in the office with a more powerful multi-processor machine running either VMware or Microsoft's Hyper-V with a view to hosting a mix of Windows Server 2003, ...
5
votes
2answers
1k views
Hyper-V: Connecting VMs through named pipe loses data
We are trying to connect two Hyper-V VMs through a serial port. Hyper-V exposes the serial port as a named pipe to the host system, and implements the server end of the named pipe. Consequentially, to ...
5
votes
4answers
2k views
Manipulate Hyper-V from .NET
Are there any means for a .NET application to create, delete, start, and stop Hyper-V virtual machines?
I would like to create an automated means of starting and stopping (the create & delete are ...
4
votes
4answers
5k views
How do you convert a physical machine into a virtual machine image for use in MS Virtual Server or Hyper-V?
I'd like to use alternatives to System Center Virtual Machine Manager 2008 is possible, in other words, any FREE tools?
3
votes
0answers
270 views
clock_gettime(CLOCK_MONOTONIC, ..) occasionally jumping backwards
After experiencing some problems with Erlang crashing, I've written a program that calls clock_gettime(CLOCK_MONOTONIC, &ts) repeatedly and checks to see if it ever goes backwards, and ...
3
votes
1answer
277 views
Powershell command to save a Hyper-V Guest state to disk
Does anybody know the command to save the state of a hyper-v guest-os from powershell?
Ex)
Save-VM GuestName ?
3
votes
2answers
1k views
Hyper-V snapshot backup strategy appropriate for production SQL server?
So SQL Server 2008 in Hyper-V is a supported configuration, and should perform well as long as you use fixed or pass-through disks and increase your processor/memory settings appropriately. My ...
3
votes
1answer
289 views
How to control processes in a Hyper-V VM's console?
I want to script the building of a Hyper-V VM as part of a build process. Specifically I need to be able to launch processes, perhaps sending keys into the VM as well, but as long as I can launch ...
3
votes
1answer
667 views
Hyper-V/WMI programming Question
I've looked at several objects in the "root\virtualization" name space but I have not been able to find where Hyper-V stores the path to the config file for a given virtual machine. I need to get this ...
3
votes
4answers
2k views
Installing Team Foundation Server
What are the best practices in setting up a new instance of TFS 2008 Workgroup edition?
Specifically, the constraints are as follows:
Must install on an existing Windows Server 2008 64 bit
TFS ...
2
votes
0answers
58 views
How do you modify an Msvm_VirtualSystemGlobalSettingData class in C#?
I'm trying to modify the AutomaticStartupAction (and shutdown) value in a given VM. I've got some code written for it, but the job always fails. I can show the sample code, but I'd like to know in ...
2
votes
1answer
80 views
Automated testing with TFS - Fully run tests on all registered Agents
I´ve set up a virtual environment for automatic testing using TFS, Hyper-V and so on.
On my Hper-V machine i so far have 4 VMs running, all different Windows editions. (XP, Vista and 2x Win7)
My ...
2
votes
2answers
255 views
How to find IpAddress of a virtual machine programmatically from hypervisor?
I am using HyperV WMI provider to to update virtual machine's configuration/settings (like hard ware, disks etc..)
How can I get IpAddress of a VM from HyperV?
How to do the same thing in VMWare?
...
2
votes
2answers
3k views
Move Physical Windows Server 2008 into a Hyper-V VM
I'd like to import a real Windows Server 2008 server as a Hyper-V Virtual Server on another Windows Server 2008 instance.
Anyone have any idea how to do this?
I'm looking at the System Center ...
2
votes
4answers
4k views
Hyper V to Virtual PC
I am currently using Windows Server 2008 Standard and have several Hyper V machines. These are development VM's and I want to now switch back Vista x64 because I am missing Aero.
I know Windows ...
1
vote
0answers
269 views
Ubuntu guest on hyper v cannot ping outside guest. But gets dhcp? [closed]
Installed ubuntu 11.10 on hyper v 2008 r2.
re boot guest and it gets an dhcp from a external dhcp server on LAN.
From console of guest can not ping LAN or Host, LAN cannot ping VM Guest.
No Firewalls ...
1
vote
2answers
172 views
How to get virtual machine state on Hyper-v using Delphi or C#
Is there any component or class that allows me to get the status of all VMs running on Hyper-v? I want to be able to list all vms and their state (stopped, running, paused, etc.).
I know microsoft ...
1
vote
1answer
160 views
Setting Hyper-V snapshot's name programmatically
I'm creating an Hyper-V snapshot with a C# program:
private static bool Snapshot(string vmName, string snapshotName)
{
var result = false;
var scope = new ...
1
vote
1answer
98 views
How to reuse Get-VMMServer connection?
I am writing a C# application whose Main() will start multiple threads, each thread firing Get-VM commandlet. I am using RunspacePool for this.
Currently each thread has to first fire Get-VMMServer ...
1
vote
1answer
130 views
Powershell Get-ItemProperty is returning 1 extra character to registry values
Contents of test.ps1:
Set-Location HKLM:
$RegistryKeys = (Get-ChildItem HKLM:\SYSTEM\CurrentControlSet\services\VMSMP\Parameters\NicList)
foreach ($Key in $RegistryKeys){
if ((Get-ItemProperty ...
1
vote
1answer
98 views
How to get an instance of Msvm_VirtualSystemGlobalSettingData class for particular VM in Powershell
So, I've been trying my hand at powershell automation of Hyper-V VM administration, and I can't seem to find a reliable way to find the VM Data Root for a given VM. I understand that when ...
1
vote
0answers
109 views
How to eject a Virtual Floppy drive of a Virtual Machine in Hyper-V programmatically using WMI and C#?
I am trying to eject/remove a loaded *virtual floppy drive* (VFD) of virtual machine in Hyper-V using Hyper-V WMI API and VB.Net/C#.
I perform this operation when Virtual Machine is turned of but i ...
1
vote
0answers
218 views
How to change gateway, subnet of a network adapter of a virtual Machine inside HyperV via WMI?
Helo all,
My Question is:
1. How to set Subnet Mask , DNS address and Gateway address of network adapter inside a virtual machine in hyper-v programatically via WMI and C#?
Note: I am successfully ...
1
vote
1answer
76 views
Where to start with backup/restore of Hyper-V in C#?
Where one would start to learn how to interact with Hyper-V thru C# to able to backup and restore virtual machines (preferably with snapshots and everything else related to backup)? I tried finding ...
1
vote
2answers
268 views
Unable to retrieve physical size of available storage for cluster
I am half way down with my work and now stuck.
I am trying to fetch information about available storage devices for a cluster.
I am able to fetch the list of available storage devices but unable to ...
1
vote
1answer
285 views
How to use USB over Remote Connection to a Virtual Machine
I'm trying to do mobile application development (BlackBerry, Android) on a virtual machine. My idea is that no matter what desktop I'm on I can open a remote connection to the virtual machine and have ...
1
vote
2answers
630 views
Convert Hyper V to EC2
Hello all I have a bunch of Hyper V images VHD files and need to get them on Amazon Ec2 does anyone know any way to convert these files to AMI or if amazon has a native way of doing this?
thanks!
1
vote
2answers
238 views
How to run an Hyper-V host on a Windows Server 2008 R2 VM on ESXi?
I have a server with ESXi. One of the virtual Machines has a WinSrv 2008 R2 and I want to host Hyper-V on it.
First of all: is it possible? I keep being told that no, it is not, due to hardware ...
1
vote
1answer
418 views
Hyper-V WMI: Import virtual machine and create snapshot
I'm using the Hyper-V WMI Provider to import virtual machines in Hyper-V, specifically using the ImportVirtualSystemEx method of the Msvm_VirtualSystemManagementService class, largely using the C# ...
1
vote
2answers
314 views
Mercurial on IIS7 error when trying to clone repository
I have set Mercurial 1.51 up on a Hyper-V server running Windows 2008R2 and am trying to use IIS7 to serve the repositories. I followed these instructions which I had previously used when evaluating ...
1
vote
2answers
2k views
Programmatically attaching a VHD to a remote Hyper-V VM
Using Hyper-V Manager, I can connect to a remote VM host, go to the settings of a VM, and add an existing .VHD file as a new hard disk. If the VM host is running Server 2008 R2, and the disk is being ...
1
vote
1answer
820 views
Auto startup and shutdown of VMs in Hyper-V
I want to be able to automate startup and shutdown of a Windows XP VM running under Hyper-V on Windows 2008.
The VM should only be available during office hours. Its a standard Windows XP (SP3) ...
1
vote
4answers
2k views
How to set up a SharePoint 2010 developer machine?
As the release date for the public beta of SharePoint 2010 is coming closer and closer, I'm wondering how to set up a developer machine for it. I've heard that for developing on SharePoint a 64 bit ...
1
vote
1answer
2k views
VMs unable to join domain controller on Hyper-V host
I've setup a Hyper-V machine running Server 2008 R2. it's configured as a DC for contoso.com (for example).
I'm trying to get a virtual machine to join the Domain, but it says it cannot find a ...
1
vote
1answer
257 views
MSDN download for Windows Servers 2008
I am currently looking at the list of available ISOs for Windows Server 2008 on MSDN subscription site and I need to know which one to download for using the Hyper-V feature.
I have the Visual Studio ...
1
vote
1answer
281 views
Taking a snapshot from the command prompt for Hyper-V 2008
Background:
I am using Hyper-V on Server 2008 to manage many virtual servers. I have scripts that have been built to make changes or apply updates to some or all of these virtual servers. Using the ...
1
vote
6answers
243 views
Advatages to using virutalization for web development
It's one of those things I see a lot but never really think of. Do you think for the purpose of web application development (specifically ASP.NET WebForms/MVC). Do you think it's advantageous to do ...
1
vote
3answers
1k views
How do you enable the network on a virtual machine running Vista x64?
I'm running Server 2008 64bit with Hyper-V. I've created a virtual machine with Vista 64bit and installed it. I can't get the Vista virtual machine to see the network adapter.
I've set-up an external ...
0
votes
0answers
5 views
Cannot connect to a local server using the Hyper-V Manager
I have installed the Hyper-V Manager in a Windows 7 SP1, but when I try to connect to another machine in the same Workgroup this error appears: 'You do not have the required permission to complete ...
0
votes
0answers
20 views
hyperV nightmare basic use case guest's with public ips doesnt work [closed]
I now been trying for nearly 4 days to setup what I would think is the simplest HyperV env.
I have a host 2008r2 server with two public ips.
I have created a guest and can connect to it via hyperV ...
0
votes
0answers
7 views
setup hyperv static routes/NAT nightmare
I have now been trying for nearly 4 days to setup what i would think is the simplest hyperV env.
I have a host 2008r2 server with two public ips.
I have created a guest and can connect to it via ...
0
votes
0answers
35 views
Slower performance (3 times) building via Finalbuilder server via Finalbuilder GUI
We're using final builder to build our software. In the GUI it takes an hour (20 minutes for debug msbuild step, 20 minutes for release msbuild step and a further 20 minutes for unit testing/code ...
0
votes
1answer
41 views
Windows Virtual Test Environments - Hyper-V based
im doing automated software testing with hyper-v, tfs and so on. since our software is supposed to support every ms os since xp sp3 there is a lot of different os versions to run the tests on.
my ...
0
votes
0answers
60 views
I've got a VirtualBox image (Windows Server 2008 R2), how can I natively boot it? Or any advice where to go from here
I am faced with a Windows hardware/software problem left over from another person. It's on me to resolve. It's a mission critical setup. The situation is:
I've got a physical server machine with:
...
0
votes
1answer
51 views
What does hardware virtualization extension mean?
When programming againt virual machine, some system remind hardware virtualization extension is needed. What does it mean?
0
votes
0answers
18 views
Domain Server on Hyper-V
Hope you all doing good,
I'm stuck in domain server configurations, hope you can help me out,
I had a configured virtual server as domain controller and it was working perfect but unfortunately, ...
0
votes
0answers
47 views
Debian network drivers under Hyper-V
I am setting up a Debian server under Hyper-V, but my network card isnt recognized and as such I cant get it online. I checked some documentation on it from debians site which provides a rivername to ...
0
votes
0answers
27 views
Recommended reserve hard disk space is not present on the Hyper-V host
Running the TFS 2010 Best Practices Analyzer gives the following warning:
Recommended reserve hard disk space is not present on the Hyper-V host
The help page suggests to resolve these warnings, ...
0
votes
0answers
63 views
Windows native boot VHD with 3D acceleration
Hi I would like to setup a VHD that I can run in Hyper-V, and native boot. First of all is this possible? Secondly if I native boot will the OS then have access to 3D hardware and allow me to ...
0
votes
0answers
322 views
Can't connect to Hyper-V VM's when 2008R2 Host connected to SSL VPN
I'm running Server2008R2 on a HP laptop as my primary OS. I have numerous development VM's installed in Hyper-V.
I connect to a client using an SSL VPN (Aventail Connect with Smart Tunneling). ...