Link to home
Start Free TrialLog in
Avatar of ihussain1306
ihussain1306Flag for United States of America

asked on

VB Script for drive mapping

Hi,
I am in the process of learning vb scripting but still not there yet to able to troubleshoot this VB script that suppose to delete existing drive mapping and then map fresh new drives. I am mapping drive to Windows 2003 and Windows 2008 server shares. Following are the errors\problems relates to this script. First of all I will confess that I did cut and paste couple of vb scripts from solutions presented at experts-exchange.com to find a working one for myself, so please bear with me when you go through it.

1. First, at this time I am running it on my PC as a test script by double clicking on it. It works intermittently. Sometimes it does not delete drives before mapping and sometimes I do not find all my drives.

2. I am mapping home drives using profiles in active directory. I like to know how I can map Home drive for individual using script.

3. Past weekend I ran a bigger test and use GPO to deliver mapping drives using this script. I saw my entire drives letters but there were missing server names along shares. E.g. instead of  Ch data on Server1 (Server1)' (L:) I was getting Disconnected drive (L:) even though they were working, but when I try to disconnect them I got drive path not found message.

I may be asking too many things here. Please ask me questions if you are not clear. These are the problem I need to resolve before I try again next weekend. Thanks in advance.


Best Regards
Iftikhar

' TwoMap.vbs - Map Network Drive to M: and P:
' Example of VBScript Mapping two drives in one script.
' Author Guy Thomas http://computerperformance.co.uk/
' Version 1.6 - April 24th 2005
' -----------------------------------------------------------------' 
Option Explicit
Dim objNetwork, strRemotePath1, strRemotePath2, strRemotePath3, strRemotePath4, strRemotePath5, strRemotePath6, strRemotePath7, strRemotePath8, colDrives,i
 
Dim strDriveLetter1, strDriveLetter2, strDriveLetter3, strDriveLetter4, strDriveLetter5, strDriveLetter6, strDriveLetter7, strDriveLetter8
 
strDriveLetter1 = "F:" 
strDriveLetter2 = "G:" 
strDriveLetter3 = "L:"
strDriveLetter4 = "P:"
strDriveLetter5 = "S:"
 
 
strRemotePath1 = "\\MainServer\APPS" 
strRemotePath2 = "\\MainServer\DATA" 
strRemotePath3 = "\\Server1\CH DATA"
strRemotePath4 = "\\Server1\Policies & Procedures"
strRemotePath5 = "\\MainServer\ITI"
 
Set objNetwork = CreateObject("WScript.Network")
 
 
Set colDrives = objNetwork.EnumNetworkDrives
 
For i = 0 to colDrives.Count-1 Step 2
      ' Force Removal of network drive and remove from user profile 
      ' objNetwork.RemoveNetworkDrive strName, [bForce], [bUpdateProfile]
      If UCase(colDrives.Item(i)) <> "H:" Then
            objNetwork.RemoveNetworkDrive colDrives.Item(i),TRUE,True
      End If
 
Next
 
' Section which maps two drives, M: and P:
objNetwork.MapNetworkDrive strDriveLetter1, strRemotePath1
objNetwork.MapNetworkDrive strDriveLetter2, strRemotePath2
objNetwork.MapNetworkDrive strDriveLetter3, strRemotePath3
objNetwork.MapNetworkDrive strDriveLetter4, strRemotePath4
objNetwork.MapNetworkDrive strDriveLetter5, strRemotePath5
 
 
Wscript.Quit
 
' End of Windows Logon Script Example

Open in new window

Avatar of drewha1969
drewha1969
Flag of United States of America image

I know this doesnt really answer your question, but have you considered just making a simple batch file using the "net use" commands?

net use <driveletter>: /delete
net use <driveletter>: <path>

Just thought I would throw that out there since nobody has responded yet...
Avatar of ihussain1306

ASKER

Thanks for your comments. I have been using "Net Use" commands in my batch files for past few years without any problem. Recently I added Windows 2008 domain controller to my doamin and wanted to add shares by editing my existing bat file. However, i did not work and I always get this Error 1326 'Unknow username or bad password". vb scripts seems to be a solution for this error. If you know any other way that let me map drive to windows 2008 share using my bat files then I am willing to try. Thanks
Avatar of John_Miller
John_Miller

We have done away with login scripts altogether and instead have mapped drives using Group Policy Preferences. The nice thing about Group Policy Preference Drive Mappings is that they are persistent. This works well for travelling users as the drives will say Disconnected network drive, until they are back on the network via VPN. Then they can connect to the drive without launching a login script. This will also reduce the amount of time at login as it is done behind the scenes.

This has eliminated a ton of time in troubleshooting and we can base our drive mappings off of AD groups.
John, I appreciate your response. I have tried to use Group Policy Preference Drive Mappings but not able to make it work. Just to let you know our enviornment so may be then you can tell if this will work for me. I have mix versions of Domain controllers, four of them are Windows 2000 and one Main domain controller is 2003 and another one is 2008, so my Domain Functional Level is Windows 2000 Native and Forest Functional level is Windows 2000. Is there any chance that ican use Group Policy Preference Drive Mappings?

          I am still trying to get my vb script working. This is my 2nd script that I am working on. It does what it suppose to do when I run by double clcking it on my PC, but when I use the same Script using GPO; it give me drive mappings without Server and share name. e.g. it gives me "Disconnected Network drive (L:)" I can click on it to open this drive. Same thing happening to other drives too. Please someone look at my script and see what i am doing wrong. Thanks
Option Explicit
Dim objNetwork, oDrives,intDrive
 
Set objNetwork = CreateObject("Wscript.Network")
Set oDrives = objNetwork.EnumNetworkDrives 
 
	on error resume next
 
    If oDrives.Count > 0 Then 
        For intDrive = 0 to oDrives.Count-1 Step 2
            If (UCase(oDrives.Item(intDrive)) = "F:") Then
                objNetwork.RemoveNetworkDrive "F:" 
            ElseIf (UCase(oDrives.Item(intDrive)) = "G:") Then
                objNetwork.RemoveNetworkDrive "G:" 
            ElseIf (UCase(oDrives.Item(intDrive)) = "O:") Then
                objNetwork.RemoveNetworkDrive "O:" 
	    ElseIf (UCase(oDrives.Item(intDrive)) = "L:") Then
                objNetwork.RemoveNetworkDrive "L:" 
	    ElseIf (UCase(oDrives.Item(intDrive)) = "P:") Then
                objNetwork.RemoveNetworkDrive "P:"
	    ElseIf (UCase(oDrives.Item(intDrive)) = "S:") Then
                objNetwork.RemoveNetworkDrive "S:"
            End If
        Next 
    End If 
 
 
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "F:" , "\\MianServer\Apps"
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "G:" , "\\MainServer\Data"
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "O:" , "\\Server1\Ch Data"
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "L:" , "\\Server2\ChData"
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "P:" , "\\Server2\Policy"
 
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "S:" , "\\MainServer\iti"
 
Wscript.Quit
 
' End of Windows Logon Script Example

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Member_2_3684445
Member_2_3684445
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have opened this question few months back and I decided to use bat files again even though I was looking for some help in my posted vb script.