I have just few questions on the use command. When I map a drive with the logon script all of my drives show up in My Computer in the following format: sharename on 'servername' (drive letter). Example var_rpt on 'Paragonrpt' (R:). However, one of our drives consistently maps correctly, BUT shows up as 'Network Drive (T:)' in My Computer. Sometimes it will show up correctly in My Computer. Could this be caused by the way I map the drive?
Here's how I map:
Code:
;Drive Mappings For Paragon
IF InGroup("WinTermParagon", "ParagonUsers")
USE R: "\\Paragonrpt\var_rpt"
USE T: "\\Paragonrpt\var_test"
USE V: "\\Paragondb\vardata"
IF InGroup("ParagonForms")
SHELL '%comspec% /c "net use z: /delete" 1>nul 2>nul'
USE Z: /delete
USE Y: "\\parntier\PrintForms"
ENDIF
ENDIF
Is that a good way, or should I be mapping persistent? Also, I have noticed that in some examples people delete the drive first, then re-map it. Does it make a difference in the way you map?