I have a logon script for every department in my office and basically it makes sure that the Anti-Virus is in place and also that all of the mapped drives are mounted. Currently, the way its setup is first...I make sure the drives are removed using the following command:
net use s: /del
net use f: /del
net use h: /del
net use j: /del
net use x: /del
net use z: /del
Then, I mount them
net use s: \\shire\apps
net use f: \\borg\rw
net use H: \\borg\%USERNAME%
net use J: \\borg\shared
net use x: \\10.1.16.20\groups foscht /user:bhs\tforscht
net use z: \\192.168.60.10\parts docs
For some reason, this configuration doesn't really work 100% of the time..I don't know what it is....but it doesnt. Is there a command I can issue before the mounting commands (the second set I listed above) that will remove all drives? OR Am I doing something wrong?
Please help!