You are currently browsing the category archive for the 'MSDN' category.
I can now confirm that the Windows Vista MSDN x86 ISO is fully installable using Virtual PC 2007 Beta on Windows Vista Ultimate 64bit.
Even though these are both MSDN images, neither of them was activated, nor did I enter a serial number during the install. Just click next when they ask you for a serial, and make sure to confirm that you do not wish to enter a serial number by pressing the “no” button.
(click on thumbnails for 1600×1200 images - the virtual machine is running at 1280×1024)
The installation took some time, even with 1GB of RAM allocated to the Virtual PC 2007 virtual machine, but after about 30 90 minutes or so, Vista Ultimate x86 virtualized on Vista Ultimate x64 using Virtual PC 2007 is a definite go-ahead-and-try-it install.
Follow normal VPC installation procedure, select Vista as the guest operating system, and chug along as the install proceeds.
Coming up next: full installation instructions.
Note: Unfortunately Virtual PC 2007 is beta, and I don’t see any plans for adding 64bit virtualization any time soon. If you have info that states otherwise, please let me know is this appears to be the only viable option for Vista VMs at the moment.
Related Articles:
Since installing bbPress on the forum.blandname.com subdomain, I’ve become addicted to the rapid posting workflow: add topic, title, description and post! It’s 4 steps and is over so quick I’ve been thinking about making a bookmarklet that will automate the task for me. Here’s the latest smaller posts I sent there, but should some day expand upon here (I’ll use blandname for longer posts from now on):
- vTiger CRM Virtual Machine
- RDP Manager for your Windows System Tray
- HOWTO TrixBox - VoIP Virtual Machine
- Online Virtual Machine Builder
- Microsoft Distributes Demo Software via VHD
- FREE Terminal Server Monitoring Tool
- VMware Workstation 6 Feature List
- Multi monitor support for RDP 6
- Add Reflections to bbPress Images
- Google PageRank and Alexa in Your Firefox 2
- Display Digg in WordPress - Digg Dugg Plugin
- Google Analytics Plugn for bbPress
Related Articles:
Via MSDN:
Continuing on our saga through the undocumented Virtual Server WMI interfaces, we now arrive at disk usage information. Here is a sample script that will create a list of the currently running virtual machines, and display the amount of disk activity they have had since they were powered on.
Set vsWMIObj = GetObject(”winmgmts:\\.\root\vm\virtualserver”)
Set vms = vsWMIObj.ExecQuery(”SELECT * FROM VirtualMachine”,,48)
For Each vm in vms
Wscript.Echo “==============================================”
Wscript.Echo “Virtual machine: ” & vm.Name
Wscript.Echo “MiB read from disk: ” & vm.DiskBytesRead / 1048576
Wscript.Echo “MiB written to disk: ” & vm.DiskBytesWritten / 1048576
NextAs you can see these disk counters usually report values in bytes. It is important to note that these counters are also reset to zero every time the virtual machine is turned off.
Related Articles:

Recent Comments