Install Windows Vista Lite from your Flash Drive
Open up an administrator mode command prompt by right-clicking on the shortcut and choosing Run as Administrator, then type in diskpart to load up the disk partitioning command line tool.
The most important step is to run the following command, which will give you the numbers of the disks, so you can use it in the next command (and not accidentally remove a partition on another drive).
list disk
Now that you know the correct number for the disk, you can use the select disk command, substituting the number 1 for whatever number your flash drive is set to:
select disk 1
Now you can run the rest of the commands, which will remove any partitions before creating a new FAT32 partition and setting it to active so it can boot.
clean
create partition primary
select partition 1
active
format fs=fat32
assign
exit
That final assign command will let you access the drive from Explorer, so we can copy the files. You’ll want to copy all of the files from your installation DVD or from the vLite folder over to your flash drive.
At this point you should be able to stick the USB drive in your computer and boot from it. Note that you might have to enable USB flash booting support in the BIOS, and often it helps to use the shortcut key for your BIOS boot menu.
Tags: accidentally, administrator, bios, bios boot, boot, boot menu, command, command prompt, Computer, disk partitioning, diskpart, dvd, Explorer, FAT, fat32, fat32 partition, flash drive, Format, installation, partition, Prompt, usb, usb drive, vLite, Windows, windows vista





How to Make a Bootable USB Flash Disk Windows Vista Installer | Tips on 20 Nov 2008 at 3:03 pm #
[...] Find which volume for your Removable USB Drive, in my case 6, Therefore Type: select volume 6 and press Enter [...]