Hello,

I'm sure there are a few ways to do this. I want to delete two drives when a client first logs in, but I don't want them to see error messages if the drives don't exist. I inserted the following into my script:

shell "net use k: /delete > NUL"

This gives me an error message every time. How can I either redirect the error to null or check for the existance of the drive letters before I try to delete them.

Thanks a lot.