Du kannst ja mal schaun, ob sich daraus (Auszug aus WSH.CHM) was stricken lässt.
MapNetworkDrive Method
Maps the share point specified by strRemoteName to the local resource name strLocalName.
object.MapNetworkDrive strLocalName, strRemoteName, [bUpdateProfile], [strUser], [strPassword]
Arguments
object
WshNetwork object.
strLocalName
Local resource name.
strRemoteName
Remote share to map.
bUpdateProfile
Optional. If bUpdateProfile is supplied and its value is TRUE, the mapping is stored in the user profile. The default is FALSE.
strUser, strPassword
Optional. If you are mapping the share point using the credentials of someone other than current user, you can specify strUser and strPassword.
Example
The following example shows how to map the "Z" drive to a network share:
Set WshNetwork = WScript.CreateObject("WScript.Network")
WshNetwork.MapNetworkDrive "Z:", "\\Server\Share"
See Also
EnumNetworkDrives Method | RemoveNetworkDrive Method
Applies To: WshNetwork Object
Oder wenn nicht bekannt ist was ein PC anbietet, dann liefert ein "net use \\servername" eine Liste der Shares. Oder mal ein "net help" auf der Kommandozeile eingeben und die diversen Optionen durchspielen. Beispiel "net help use" zeigt die ganzen Varianten dieses Befehls an.
--
Viele Grüße
Hubert Daubmeier