CAT | VMWare
4
Extend System Center to VMware – Don’t miss Veeam Free Webinars in May!
Comments off · Posted by christopher@vnext.be in VMWare
Extend System Center to VMware
Protect your investments in Microsoft System Center and manage your physical and virtual environment from one console with the Veeam nworks Management Pack™ for VMware.
The nworks Management Pack provides scalable, fault-tolerant and agentless VMware infrastructure monitoring and management directly in Microsoft System Center, eliminating the need for a separate monitoring framework.
Discover the results of our valued customer feedback and what version 5.6 of nworks Management Pack includes.
May 9, Mon, starts at 10:00 am (GMT+01:00)
Register
Learn how you can protect your investments in Microsoft System Center and manage your physical and virtual environment from one console.
May 25, Wen, starts at 10:00 am (GMT+01:00)
Register
Christopher KEYAERT
customer feedback · nworks · opsmgr · Scom · veeam
19
How to convert a Microsoft VHD to a VMware VMK?
2 Comments · Posted by Christopher Keyaert in Opalis, OpsMgr / Scom, VMWare
Sometime, you have a Virtual Machine in a Microsoft VHD format and you would like to use it with your VMware Workstation application. So this little guide will explain how to perform this operation.
Pre-requisites
- A Microsoft VHD File
- VMware Converter 4 standalone (http://www.vmware.com/download/converter/)
Step 1
Create a working folder on one of your computer drive and paste your VHD file into it.

Step 2
For the conversion, VMware Converter needs a VMC file. A VMC is the configuration file of the Microsoft Virtual Machine, it’s in this file that you the all the settings of the VM.
So, download the VMC file that is available here (http://www.vnext.be/wp-content/uploads/2010/09/MyVM.Rename-to-dot-vmc.txt), rename the extension to .vmc and paste it to your working folder:

Open it with notepad and edit the path to your VHD file like below:

Step 3
Start VMware Converter 4 standalone

Click on Convert Machine:
- Select source type : Backup image or third-party virtual machine
- Virtual machine file : The path to your VHD file

Click on Next and choose the following parameters:
- Select destination type : VMware Workstation or other VMware virtual machine
- Select VMware product : VMware Workstation 7.0.x

Click on Next and choose the following parameters:
Adapt the parameters to your need, but be sure that Install VMware Tools is set to YES

Click on Next and review all the information:

Click on Finish and wait the end of the process:

After a few minutes, the process is complete:

Go to your working folder, enter in the new created folder and double click on the .vmx file.

VMware workstation will now start:

Review your Virtual Machine configuration and start your new VM:

After you’re first Log on, Windows will install the drivers related to VMware Workstation, so let the process continue and restart you virtual machine when it’s done:

When all the drivers have been installed and you virtual machine restarted, you will have to reactive your copy of Windows:

When the activation process ended, you could now enjoy your virtual machine with VMware Workstation:

Christopher KEYAERT
conversion · microsoft · vhd · virtual machine · vmk · VMWare
16
SCOM Nworks 5.5 : Virtual Center deconnection / VC200 Exception
No comments · Posted by Christopher Keyaert in OpsMgr / Scom, VMWare
capture · default location · Error · Program · Type
20
VI Toolkit / PowerShell : How to connect to more than one Virtual Center at the same time
No comments · Posted by Christopher Keyaert in PowerShell, VMWare
Hello All,
If you only use the command GET-VM, you will receive back the VMs List only from the Virtucal Center that you last connect on. If you want the get all the VM from your both virutal centers, you absolutely need to add the parameter -server $vcs to you command.
If you want to connect to more than one virtual center at the same time, here the starting code :
1 2 3 4 5 6 7 | $vcs = @() $vcs += connect-viserver vc1.mydom.local $vcs += connect-viserver vc2.mydom.local # You could add many as you need... # Command example get-vm -server $vcs | export-csv C:\Export.csv |
In a general way, don’t forget to add -server $vcs to every command than you use with the VI Toolkit.
As always, RTM -> the documentation on VI Toolkit :
http://communities.vmware.com/docs/DOC-4210
Christopher Keyaert
PowerShell · script · virtual center · VMWare
