I try to run a batch file with the following code:
wget.exe \"http://example.com/file0%24.html\"
The problem is, that CMD is interpretin
Use a double-percent sign to send a percent literal.
wget.exe "http://example.com/file0%%24.html"
You can escape % as %%
http://support.microsoft.com/kb/75634