You can install Vista directly from external media either a USB drive or an external USB hard disk. The install is at least twice as fast from a USB hard disk. Taking around 10-15 minutes including making a coffee.
- Anyway-firstly configure your target machine to boot from USB, set the boot order after your internal drive, otherwise you'll need to unplug the installation drive when the installer reboots the machine.
- On another Vista machine, pop your USB stick (it needs to be 4GB as the Vista DVD is 2.6GB) or USB harddisk into the USB port.
- Run a commend prompt and run the utility diskpart
- Retrieve a list of drives attached to the system using 'list disk', make a note of the number corresponding to your external media. Make sure you get the right one as picking another drive will lead to data loss.
- Run 'select disk <x>' where x is your drive number e.g. 'select disk 4'
- Run the following commands
clean
create partition primary 3096
select partition 1
active
format fs=fat32
assign
exit - The assign command will give the drive the next available drive letter so it will now appear in My Computer
- Copy the contents of a Vista DVD onto the new drive. You can use XCOPY to do this e.g.
xcopy:\*.* /s /e /f :\
Whereis the drive letter containing the Vista DVD and externaldriveis your newly assigned drive letter. e.g. xcopy e:\*.* /s /e /f f:\ - Plug the USB device into the target machine and boot it. Assuming your boot order is set correctly in the BIOS the Vista installation will run from the external media.
No comments:
Post a Comment