Hi,

I wanted to write a little script that deleted all temporary files from a user's profile. I use the following line:
del "c:\documents and settings\" + @USERID + "\*.tmp" /h /s

But the parameters for hidden files and subdirectories don't work. If I remove the parameters, it will delete only non-hidden files, and no files from subdirs. If I add the parameters, no files are deleted at all!

What's the problem, is it a bug, or have i made a syntax error?

Thnx...