Hello,
I'm trying to create a batch file that will delete & remake temporary directories, but it isn't working. There are two directories that I want to do this two, and the second one doesn't work. here is the code:
@echo off
rd c:\windows\TEMP /s /q
md C:\windows\TEMP
rd C:\Documents and Settings\christ\Local Settings\Temp /s /q
md C:\Documents and Settings\christ\Local Settings\Temp
Are the spaces in the directory the problem? If so, how do i fix it?
Thanks,
Chris