'm running the following Script to remove all mapped drives as part of a logon script that is applied through a GPO. I'm receiivng an Windows Scripting Host error message on logon at line3, char 1 that the local device s already in use.
In addition to this script i have in the user's property in AD asetting that specifies that the H drive is mapped t a specific location for a users home folder will this cause a problem?
What I basically want to accoumplish is to removed any mapped network drive connection that may exist with the exception of the users home directory. Is this possible and what am I doing worng?
Set objNetwork = CreateObject("Wscript.Network")On Error Resume NextSet colDrives = objNetwork.EnumNetworkDrivesFor i = 0 to colDrives.Count-1 Step 2 objNetwork.RemoveNetworkDrive colDrives.Item(i)Next