Hi guys long story short why doesn't this work?
C:\>echo sddsfsdfd > "%date%.txt"
The system cannot find the path specified.
If I use:
C:\>echo sddsfsdfd > %date%.txt
It works but because %date% = Mon 14/12/2009 (and there is a space between Mon and 14)
It will save the file as just Mon.txt
How do I get it to save as Mon 14/12/2009.txt???

