Posts tagged USB boot
Installing Server 2008 from a USB drive
Feb 21st
I had to follow these steps to boot and install server 2008 on my server box (which doesn’t have a DVD-drive).. I was quite shocked to find that server 2008 R2 no longer natively supports 32-bit processors, so this may become quite useful for those of you that aren’t blessed with the wallet for a shiny 64bit server for your home.
Open command prompt and use the following commands:
- Type: diskpart
- list disk
- select disk 1 (assuming disk 1 was your thumb drive in the above list disk command)
- clean
- create partition primary
- select partition 1
- active
- format fs=fat32
- assign
- exit
Finally you will need to copy over the server 2008 files from the cd or the place where you extracted your ISO.
- xcopy d:\*.* /s/e/f e:\ (d:\ can be replaced by your cd/dvd drive letter and e:\ is the drive letter of your usb drive)
Considerations
If you have a U3 drive you may want to remove the U3 partition before you begin.