The newly released vmClient 4.1 is vSphere 4.1 compatible. The vmClient is a lightweight tool which enables you to control the power of your virtual machines, itās also capable of presenting the MKS console of your virtual machines. Before you can use the vmClient, you have to install the vSphere client on the same system. After starting the vmClient, you can logon to your vCenter server or individual ESX4.1 or ESX4.1i host. A list with available virtual machines will be presented after choosing the Virtual Machines menu item, you can also easily identify the power state of the virtual machines. Grey is powered off, green is powered on, yellow is suspended and red indicates that the virtual machine has an alarm. When youāre working in an RDP session thereās a menu item which can generate a Ctrl-Alt-Del in the guest OS instead of pressing Ctrl-Alt-Ins. The vmClient can run without borders in borderless mode. The menu bar has an option to search for virtual machines, just type in the first characters of your virtual machine name and the list will be filtered.
The number of virtual machines can be too high to fit in the āVirtual Machineā menu item so Iāve added an extra option to disable this menu and use the search menu instead. The option to customize the user interface of the vmClient can be done by changing a few menu settings. Youāre able to show or hide menu items using the quick start configuration icon.
You can also pre-select a default virtual machine in these settings. There are two recorded demo sessions available, one which show a walkthrough and a second which shows how to convert the vmClient into a VDI client. The trail version is limited to a maximum number of 50 virtual machines and shows a splash screen with my picture in it. The registered version can be bought online for ā¬ 25,00 and has no virtual machine limit, you can not get rid of the splash screen. :-) The Buy Now link is available in the help menu. If you have any ideas or suggestions on improving the vmClient or youāve found a bug, you know where to reach me. Have fun with it.
How to convert the vmClient into a VDI client
A general walkthrough
The vmClient 4.0 can be downloaded from this location: http://vmclient.nl/
Sunday, September 26. 2010
The vmClient 4.1 is released
Thursday, April 15. 2010
The vmClient - Just a handy tool or a cool lightweight VDI client?
Recently Iāve added a few new features to the vmClient which enables you to customize the visibility of menus. Because all those new settings could only be changed be editing the registry, Iāve decided to add a configuration dialog. When the vmClient is running, thereās a notification icon visible near your Windows clock in the right lower corner. You have to double click the icon in order to change te vmClient configuration settings. Within the config dialog, thereās an option to enable or disable auto logon and the preferred virtual machine setting. Thereās also a tab for configuring your favourites and show or hide individual menu items. The cool feature in this release is... hide all menus, use auto logon and configure a preselected VM and voila thereās you lightweight VDI client.
The download is available at http://vmClient.nl
Saturday, April 10. 2010
The vmClient beta 4.1 offers auto logon
Auto logon enables you to easily configure the vmClientās built-in auto logon mechanism, besides that the current 4.1 beta version offers some additional features like the favourites menu. Itās also using timers to check on the virtual machine status instead of menu actions so it should perform a bit quicker. Configuring auto logon is really easy, just open the registry editor an fill in the right value at the following entries.
Key Name: HKEY_CURRENT_USER\Software\VB and VBA Program Settings\NTPRO.NL\vmClient
Autologon : True
Host : vcenter.ntpro.local
Username : Administrator
Password : vmware
Sunday, March 28. 2010
What's New In vmClient 4.1 Beta
Some of the feedback Iāve received after the initial launch of the vmClient 4.0 a few weeks ago had to do with creating a list of frequently used virtual machines. A lot of people are using the vmClient as a helpdesk app and donāt want to give out the full blown viClient for accessing the virtual machine desktop by their helpdesk staff. The new favourites menu item enables you to create a list with virtual machines. After creating a list through the registry or by adding and removing virtual machines from within the vmClient itās possible to customize the user interface and hide the obsolete menus. I recorded a demo session with my newly bought Camtasia software.
Hereās the download link for vmClient 4.1 Beta: http://vmClient.nl
Hereās the online demo: http://www.screencast.com/users/esloof/folders/Online-Training
Tuesday, March 9. 2010
The vmClient 4.0 is released
The vmClient is a lightweight tool which enables you to control the power of your virtual machines, itās also capable of presenting the MKS console of your virtual machines. Before you can use the vmClient, you have to install the vSphere client on the same system. After starting the vmClient, you can logon to your vCenter server or individual ESX4 or ESX4i host. A list with available virtual machines will be presented after choosing the Virtual Machines menu item, you can also easily identify the power state of the virtual machines. Grey is powered off, green is powered on, yellow is suspended and red indicates that the virtual machine has an alarm. When youāre working in an RDP session thereās a menu item which can generate a Ctrl-Alt-Del in the guest OS instead of pressing Ctrl-Alt-Ins. The vmClient can run without borders in borderless mode. The menu bar has an option to search for virtual machines, just type in the first characters of your virtual machine name and the list will be filtered.Ā
The number of virtual machines can be too high to fit in the āVirtual Machineā menu item so Iāve added an extra option to disable this menu and use the search menu instead. The option to customize the user interface of the vmClient can be done by changing a few registry settings. Youāre able to show or hide menu items using this hive.
Ā HKEY_CURRENT_USER\Software\VB and VBA Program Settings\NTPRO.NL\vmClient
You can also pre-select a default virtual machine in this hive. There are two recorded demo sessionsĀ available, one which show a walkthrough and a second which shows how to convert the vmClient into a VDI client. The trail version is limited to a maximum number of 50 virtual machines and shows a splash screen with my picture in it. The registered version can be bought online and has no virtual machine limit, you can also get rid of the splash screen. :-)Ā The Buy Now link is available in the help menu. If you have any ideas or suggestions on improving the vmClient or youāve foundĀ a bug, you know where to reach me. Have fun with it.
How to convert the vmClient into a VDI client
The vmClient 4.0 can be downloaded from this location: http://vmclient.nl/
Wednesday, November 26. 2008
Start VMware Remote Console with PowerShell
Patrick Schneider created a PowerShell script which can be used to call the VMware Remote Console (VMware VMRC). If you have any questions for Patrick, you can reach him at s.patrick1982(nospam)@gmail.com
cmdlet New-VMRC {
Param(
[Parameter(Mandatory=$true,ValueFromPipeline=$true,HelpMessage="VMs to process")]
[String]
$vms
)
$vm = Get-VM $vms
if($vm.Count) {
Write-Output "Define only one host!"
break
} else {
if ($vm.id) {
$gvm = Get-View $vm.id
} else {
Write-Output "No VM found"
break
}
C:\Program Files\VMwareVMRC\vmware-vmrc.exe -h $vm.Host -m $gvm.Config.Files.VmPathName
}
}
The new VMware Remote Console (VMware VMRC) allows accessing the virtual machine consoles independent of the Web-based management interface. In order to access VMware virtual machines, install VMware the VMRC application from VMware Virtual Server web interface or download VMware VMRC application for Windows from the Minicom web site.
Saturday, September 27. 2008
vmware-vmrc.exe | VMware Remote Console
Last year around the summer I created the Virtual Machine MKS Client. It started as sort of a contest with Bouke Groenescheij and eventually matured in a real product. I sold a few copyās of my tool but hadnāt the time to keep up with the new active objects from VMware. This week I installed VMware Server 2.0 and while I was wondering around in my program files directory it stroked my eyes. The VMware Remote Console aka vmware-vmrc.exe. I had to do some googeling before I found out what the parameters were, but I got it working. This executable can also be used to take over the Mouse Keyboard and Screen of your VMās running on ESX.
vmware-vmrc -h 192.168.75.128 -m "[Storage1] Nostalgia/Nostalgia.vmx"
Ā