Can someone write me a simple batch file real quick?

Dude , you have pretty much wrote it yourself !

ren c:\driver.dll c:\driver.old
copy c:\driver\driver.dll c:\driver.dll
call driver.cmd

give that a go
 
The file that i'm trying to rename is giving the error "The syntax of the command is incorrect"

The line i'm running is....

ren C:\Program Files\Common Files\BigHand\BHHIDDriver.dll "C:\Program Files\Common Files\BigHand\BHHIDDriver.old"

Any ideas?
 
you'll need the "" marks around the first file location due to the spaces.

So you get,

ren "C:\Program Files\Common Files\BigHand\BHHIDDriver.dll" "C:\Program Files\Common Files\BigHand\BHHIDDriver.old"
 
Back
Top Bottom