BenkoTIPS
They just announced that Windows 8 Release Preview and Visual Studio 2012 Beta is available for download (see http://aka.ms/Win8ToolsMB) . If you’re wondering how you can create a bootable USD stick to install it on your machine here’s some instructions to get you started…
The easiest way to convert an ISO file to a DVD in Windows 7 is to use Windows Disc Image Burner. On a PC running Windows XP or Windows Vista, a third-party program is required to convert an ISO file into installable media—and DVD burning software often includes this capability. One option is the USB/DVD download tool provided by the Microsoft Store. You can also download Windows 8 Release Preview Setup, which includes tools that allow you to create a DVD or USB flash drive from an ISO file (Windows Vista or Windows 7 required).
Also from the download page is a link to download the tools, which includes the Express SKU. Check out details on http://www.microsoft.com/visualstudio/11/en-us/downloads.
I’ve covered it before, but in case you want to install with Boot from VHD there are some commands worth looking at. The first is where you press SHIFT-F10 during the install when it asks where you want to install to in order to create an expandable VHD on the fly.
c:\Windows\System32> diskpart Microsoft DiskPart version 6.1.7601 Copyright (C) 1999-2008 Microsoft Corporation. DISKPART> create vdisk file=c:\vhd\win7.vhd type=expandable maximum=50000 100 percent completed DiskPart successfully created the virtual disk file. DISKPART> select vdisk file=c:\vhd\win7.vhd DiskPart successfully selected the virtual disk file. DISKPART> attach vdisk 100 percent completed DiskPart successfully attached the virtual disk file. DISKPART> create partition primary DiskPart succeeded in creating the specified partition.
At this point you can ALT-TAB back to the installation process and you should see your new partition Then in the installation process you will see your new disk in the list of installation target options. Depending on the OS you may need to go back and run BCDEDIT to configure the boot loader to know about and offer the option of booting to your new VHD.
c:\> bcdedit /copy {current} /d “myVHD”
Copy the CSLID that is displayed and then run…
c:\> bcdedit /set {CLSID} device vhd=[C:]\vhds\vhdname.vhd
c:\> bcdedit /set {CLSID} osdevice vhd=[C:]\vhds\vhdname.vhd
c:\> bcdedit /set {CLSID} detecthal on
Enjoy!