I would like to have a popup box ask to select a file.... Then, I would like to have the box take the selected file (EG C:\program files\my program\myexe.exe) and do something like this inside my batch file...
CODE
set program=C:\program files\my program\myexe.exe
that way, I could later do this...
CODE
copy "%PROGRAM%" "%SYSTEMDRIVE%\backup"
Along with being able to select an individual file, I would also like to be able to select directories...
Thank you in advance...
