Sunday, November 30. 2008
Richard Garsthagen released “VMware CPU Host Info”
Saturday, November 29. 2008
Check out RTFM's new design
Mike Laverick launched a completely new design of his well known RTFM education website. It looks great, although his "Other VMware Bloggers" section is a bit outdated; you better visit VMware-Land's LaunchPad instead.
Friday, November 28. 2008
Web based VMDK descriptor file creator
esXpress, created a web based VMDK file descriptor file creator.

Thursday, November 27. 2008
Recreate a VMDK descriptor file from scratch
Ulli Hankeln over at sanbarrow.com also known as continuum created a nice little tool which recreates a VMDK descriptor file. When you end up with only a flat.vmdk this is a real nice tool. Ulli rulez :-).

Occasionally ESX VMs crash in such a way that the descriptor file of a vmdk gets lost.
If you ever need to recreate a descriptor from scratch but still have the *-flat.vmdk this little tool may come handy. Tool asks for a flat-file - like used by ESX 3 and Workstation. It ignores the CID and uses a bogus one. Output is named "newdescriptor.vmdk" - rename as needed.
Doesn't work for disks smaller than 1 Gb at the moment.
Via ICT-Freak
Wednesday, November 26. 2008
New book | VCP Test Prep
This book covers the ESX 3.0.x through ESX 3.5.x releases that are the focus of the VCP test. Troubleshooting tips appear throughout the book, making it a useful resource in the virtualized datacenter. The first & only alternative to expensive courses, this highly accessible work provides motivated individuals with a selfaced method to prepare for the VMware Certified Professional exam. Geared toward professionals with basic technical skills, the book focuses on that information which is specific to the exam. It covers the basics needed to install ESX and VirtualCenter, and create virtual machines. It also delves into more advanced material such as how to configure networks, assign rights, and create resource pools, and optimize resource utilization. Questions at the end of each chapter review key topics. Two sample tests provide a gauge of one's readiness.
| ISBN-13 | 978-1-4200-6599-2 | 9781420065992 | ||
| ISBN-10 | 1-4200-6599-8 | 1420065998 |
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.

What Is ScummVM?
ScummVM is a program which allows you to run certain classic graphical point-and-click adventure games, provided you already have their data files. The clever part about this: ScummVM just replaces the executables shipped with the games, allowing you to play them on systems for which they were never designed!
Some of the adventures ScummVM supports include Adventure Soft's Simon the Sorcerer 1 and 2; Revolution's Beneath A Steel Sky, Broken Sword 1 and Broken Sword 2; Flight of the Amazon Queen; Wyrmkeep's Inherit the Earth; Coktel Vision's Gobliiins; Westwood Studios' The Legend of Kyrandia and games based on LucasArts' SCUMM (Script Creation Utility for Maniac Mansion) system such as Monkey Island, Day of the Tentacle, Sam and Max and more. You can find a thorough list with details on which games are supported and how well on the compatibility page. ScummVM is continually improving, so check back often.
Among the systems on which you can play those games are Windows, Linux, Mac OS X, Dreamcast, PocketPC, PalmOS, AmigaOS, BeOS, OS/2, PSP, PS2, SymbianOS and many more...

