We had to install Windows 2008 R2 Server on HP ProLiant ML150 G3 server and we decide to do this booting and installing it from USB stick. We have a 4GB USB stick and it is enough.
Diskpart tool is excellent way to do this task. If you don’t have Diskpart, you can download it here.
Format the thumb drive
- from a DOS prompt execute: 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
Copy the Win2008 install files
- xcopy d:\*.* /s/e/f e:\ (assumes your dvd is drive D: and your thumb drive is drive E:\, adjust accordingly)
