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)

Vista on Vista VirtualizationVista on Vista VirtualizationVista on Vista Virtualization

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:

  • Virtual Server VM Disk Usage via WMI
  • VMWare relases VMWare Converter 3 Beta Refresh
  • Aero Glass on a Windows Vista Virtual Machine
  • Running Virtual Machines on Windows Vista
  • Parallels for Mac to support Vista and Leopard

  • del.icio.us" Digg" Reddit" Simpy" Yahoo!"

    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):

    Related Articles:

  • blandname forum open!
  • CD Eject Tool for Windows XP
  • Running Terminal Server on Windows XP
  • VMWare relases VMWare Converter 3 Beta Refresh
  • Aero Glass on a Windows Vista Virtual Machine

  • del.icio.us" Digg" Reddit" Simpy" Yahoo!"

    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
    Next

    As 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:

  • Running Virtual Machines on Windows Vista
  • VMware Releases VI3 Perl Toolkit Virtual Machine
  • Vista on Vista Virtualization using Virtual PC 2007
  • VMware Announces VMSafe Hypervisor Security Platform
  • Aero Glass on a Windows Vista Virtual Machine

  • del.icio.us" Digg" Reddit" Simpy" Yahoo!"