Hi there,
I have had the same problem. Below is a script that deletes the drive prior to creating the drive. You can cut and past this script. Also save this as a .wsf format (it runs much faster).
Paul F
<package>
<job id="vbs">
<script language="VBScript">
'logon.vbs
'The following Script logs into the Network
'Script Written by Paul F 04-08-2002
'Variables below are used for connecting network drives
Dim objNetwork, strName
Set objNetwork = CreateObject("WScript.Network"
'Variables below are used for enumerating (listing) drives enable for diagnostic
'Set WshNetwork = WScript.CreateObject("WScript.Network"
'Set oDrives = WshNetwork.EnumNetworkDrives
'Variables below are used for the win pop-up network message
Dim WshShell, BtnCode
Set WshShell = WScript.CreateObject("WScript.Shell"
On Error Resume Next
'get user name
While strName = ""
strName = objNetwork.UserName
WScript.Sleep 100
WEnd
'Add network drives below to make sure drives are disconnect
'before connecting new drives to network shares
WshNetwork.RemoveNetworkDrive "R:"
WshNetwork.RemoveNetworkDrive "S:"
WshNetwork.RemoveNetworkDrive "T:"
WshNetwork.RemoveNetworkDrive "W:"
' Add network drives below to connect users to network shares
'connect to OAKNTFS 1
objNetwork.MapNetworkDrive "R:", "\\OAKNTFS1\DEPTAPP1", False
'connect to OAKNTFS 2
objNetwork.MapNetworkDrive "S:", "\\OAKNTFS2\DEPTAPP1", False
'connect to OAKNTFS 3
objNetwork.MapNetworkDrive "T:", "\\OAKNTFS3\DEPTAPP1", False
'connect to OAKNTFS 4
objNetwork.MapNetworkDrive "W:", "\\OAKNTFS4\DEPTAPP1", False
'This lists the network drives that the user is connected to
'Enable for Diagnostics only
' For i = 0 to oDrives.Count - 1 Step 2
' WScript.Echo "Drive " & oDrives.Item(i) & " = " & oDrives.Item(i+1)
' Next
'The code below used for the win pop-up network message
BtnCode = WshShell.Popup("Network Drives Connected", 5, "OakNet Login", 0 + 64)
' The following code sets the time on the PC to that of the PDC
' Please note the net time command must go to the PDC
Set oShell = WScript.CreateObject("WScript.Shell"

oShell.Run "command /C net time \\OAKNTDC2 /set /yes",0,True
</script>
</job>
</package>