|
|
Question : removing disconnected logon script
|
|
I have a lab of XP Pro computers that have a disonnected logon script or drive. This lab was re-imaged using RIS this summer. The script is not comming from my server but it's on the client somewhere because all my other computers running XP pro are not having this problem. I want to be able to remove this drive for what ever user logs in. Any Ideas?
|
Answer : removing disconnected logon script
|
|
Modify your logon script (on the server) to add this command
{assuming S: is the drive you want to eliminate}
NET USE S: /delete
/delete : Cancels the specified network connection. If you specify the connection with an asterisk (*), all network connections are canceled.
To drop all network connections you would use
NET USE * /delete
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/net_use.mspx
|
|
|
|