Saturday, January 12, 2013

WINDOWS 7 USB/DVD DOWNLOAD TOOL (WUDT) IS UNABLE TO COPY FILES

SkyHi @ Saturday, January 12, 2013


You might have heard of the stir that Microsoft’s Windows 7 USB/DVD Download Tool (WUDT)caused last year when some Open Source watchmen recognized that the tool contained code that violated the GPL. Microsoft was then “forced” to release WUDT under GPLv2. Considering the upset in the media about this incident, I expected a luxurious tool that comes with lots of customization features. I was somewhat disappointed to discover it does nothing else but copy the contents of a Windows 7 install DVD to a USB stick and make it bootable.
Windows-7-USB-DVD-Download Tool-WUDT
The funny thing is that WUDT even failed to perform this simple task with my no-name USB stick. This message was the only thing that the Open Source tool could do for me:
We were unable to copy your files. Please check your USB device and the selected ISO file and try again.
At least, my cheap stick wasn’t the cause because everything worked perfectly when I manually did the job (hopefully without violating any Open Source laws). So, I thought, I would write this post for those who might run into the same problems and think they need to buy another USB stick. After all, this is Microsoft software and there are not many options to integrate bugs in such a simple tool.
COMPLETELY FREE
  • No installation costs
  • No monthly fees
  • No "freemiums", trial runs, or upgrade costs
  • Free customer support
Free means FREE!
Advertisement
Anyway, here is what you have to do. Launch a command prompt with admin rights and run the diskpart tool. Note: Before you run these commands read the warning below!

diskpart
list disk
select disk #
clean
create partition primary
select partition 1
active
format quick fs=fat32
assign
exit
The “list disk” command will show you the connected drives and with “select disk”, you can choose your USB stick.
WARNING: Be careful to select the right drive or else your day won’t have a happy end because if you select the wrong drive you will lose all your data on this drive!
The crucial step here is the “clean” command. It overwrites the MBR and the partition table (thereby, deleting everything on the stick). My guess is that WUDT misses this step and only formats the flash drive. It appears my memory stick had some odd partitions (which is not uncommon). When I tried WUDT again with this prepared stick, the Open Source tool mastered its task without further murmur.
By the way, this is also the reason why you shouldn’t use the Windows Disk Management applet to prepare the USB stick. This GUI doesn’t offer a clean command.
After you prepare the stick, you have to copy the contents of your Windows 7 DVD to the thumb drive, and you are done. If you only have an ISO file, you can use Virtual CloneDrive to mount the Windows 7 install DVD first.

REFERENCES
http://4sysops.com/archives/windows-7-usbdvd-download-tool-wudt-is-unable-to-copy-files/