J
John John - MVP
Kate said:The command prompt worked correctly, so I must be doing something
wrong creating the .bat. In Notepad, I wrote
del \F:\Documents and Settings\(user name)\Local Settings\Temp\p*.tmp
del \F:\Documents and Settings\(user name)\Local Settings\Temp\t*.tmp
Don't use the first forward slash in the path and use the quotation
marks, try it *exactly* like this:
del "F:\Documents and Settings\(user name)\Local Settings\Temp\p*.tmp"
del "F:\Documents and Settings\(user name)\Local Settings\Temp\t*.tmp"
John