This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Sunday, 31 July 2011

Windows 7 - Add hardware wizard

The 'Add Hardware Wizard' is still included .
type hdwwiz in the search box and hit enter to get to it ..

Tuesday, 19 July 2011

Create Bootable Windows Server 2008 USB Stick

I recently had the need to install Windows Server 2008 from a USB stick. This was because I didn't have a working DVD drive to hand. I found a couple of tutorials online explaining how to create the disk. They generally explained this technique:
C:\> diskpart

DISKPART> list disk

Select the USB device from the list and substitute the disk number below
when necessary

DISKPART> select disk 1
DISKPART> clean
DISKPART> create partition primary
DISKPART> select partition 1
DISKPART> active
DISKPART> format fs=fat32
DISKPART> assign
DISKPART> exit

xcopy X:\*.* /s/e/f Y:\

where X:\ is your mounted image or physical DVD and Y:\ is your USB
device
However it appears diskpart is unable to see USB sticks under Windows XP. I have later tried on Vista and this limitation appears removed. But for those using Windows XP I have found an alternative method.
Firstly find the bootsect.exe tool on the Windows Server disc (in the boot directory). Then run this command where U is the drive letter of the USB stick.
D:\boot> bootsect.exe /nt60 U:
Now copy all the files from the Windows Server disc onto the USB stick. This can be done by dragging in the GUI or using the xcopy method shown previously.
I have yet to repeat this procedure and I might have previous partitioned or formatted my USB stick in a unique way. So if this method doesn't work drop me a mail and I'll see what I can do.

Taken from http://bramp.net/blog/create-bootable-windows-server-2008-usb-stick