I get an ERROR after I push Driver backup and select a folder, the same thing happen when I cancel after folder select and its really annoying. Using windows 7 x64 professional.

http://imgur.com/dptYK,YnIRw,lOdVA#0
http://imgur.com/dptYK,YnIRw,lOdVA#1
http://imgur.com/dptYK,YnIRw,lOdVA#2

debuglog_DBS.txt:
http://pastebin.com/7wmsesDT

As far as I can see this does not work on server 2003. Looking through the script I can see why.
The line:
IF /I "%build%"=="2600" SET OSbuild=NT5
is only for windows xp, both server 2003 and xp are NT based and use same drivers, so we need the build number for 2003 which is 3790. Then u should do a for loop like you do with windows 7/vista:

FOR %%i IN (2600 3790) DO (
IF /I "%build%"=="%%i" SET OSbuild=NT5
  )

it should be good and work on server 2003 too. But better test just to be sure, just wanted to mention it for some time but newer created a user before today. Great work btw smile
Link to build numbers:
http://msdn.microsoft.com/en-us/library … s.85).aspx