cgriffith4
asked on
NET USE /DELETE Question???
I have a logon script I have users run in the morning when they logon the network which delets unused drives and reconnects networks drives. Here is my script:
net use /delete *
net use s: \\server\public
net use t: \\server\transcription
When the net use /delete switch is used the users get a message saying type Y or N to continue action? Is there a way I can have the NET USE /DELETE * run and do not ask the user to type Y or N?
Thanks!!
net use /delete *
net use s: \\server\public
net use t: \\server\transcription
When the net use /delete switch is used the users get a message saying type Y or N to continue action? Is there a way I can have the NET USE /DELETE * run and do not ask the user to type Y or N?
Thanks!!
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
tanks!