Home / HomePage / Scripts / Printer and share mapping script

Printer and share mapping script


The script below will map a list of printers, and set the designated one as default. It is smart enough to detect currently mapped printers and not try to re-add the same mapping. Same goes for default printer; it will not try to reset default if it is correct already.

Next, the script maps a drive.

Finally, it lets the user know (via dialog box) what has changed, or of any problems that occurred.


  1. On Error Resume Next
  2. strComputer = "."
  3. strMsgTitle = "STS Drive/print map script " 'title for dialog boxes
  4. strResult = "" 'result string for final status dialog box
  5. Set WshNetwork = CreateObject("WScript.Network")
  6. strHostname = WshNetwork.Computername
  7.  
  8. 'see if we are on \\server - if yes, skip to drive mapping
  9. if strHostname = "SERVER" Then DriveMap()
  10.  
  11. '---------------------------------------------------------------------
  12. 'setup Network Printers
  13. '---------------------------------------------------------------------
  14. 'CUSTOMIZE SCRIPT HERE
  15. '(constant) list of network printers that *should* be installed.
  16. 'They are listed here as key/item pairs.
  17. 'Key is the printer share path in "quotes"
  18. 'Item is set to "notfound" initially
  19. Set colNetPrinters = CreateObject("Scripting.Dictionary")
  20.         colNetPrinters.Add "\\server\KONICA-C450PCL", "notfound"
  21.         colNetPrinters.Add "\\server\HPLaserJ", "notfound"
  22.         colNetPrinters.Add "\\server\HPOffice", "notfound"
  23.  
  24. 'also give the path, in quotes, of the printer you want to set as default.
  25. 'It may be one of the printers listed above.
  26. strDefaultPrinter = "\\server\HPLaserJ"
  27. 'END OF USER CUSTOMIZED PARTS
  28.  
  29. 'iterate through locally installed printers
  30. 'and mark off the network printers that are found
  31. Set objWMIService = GetObject("winmgmts:" _
  32.         & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
  33. Set colInstalledPrinters =  objWMIService.ExecQuery _
  34.         ("Select * from Win32_Printer")
  35. For Each objPrinter in colInstalledPrinters
  36.         PrinterCounter=PrinterCounter + 1
  37.   'commented out debug section
  38.         'Wscript.Echo
  39.         'Wscript.Echo "Printer " & PrinterCounter
  40.         'Wscript.Echo "  Name: " & objPrinter.Name
  41.         'Wscript.Echo "  Server: " & objPrinter.Servername
  42.         'Wscript.Echo "  Default: " & objPrinter.Default
  43.         'Wscript.Echo "  Sharename: " & objPrinter.Sharename
  44.         strPrintMapName=objPrinter.Servername + "\" + objPrinter.Sharename
  45.         if colNetPrinters.Exists(strPrintMapName) Then
  46.                 colNetPrinters.Item(strPrintMapName) = "found"
  47.         end if
  48.         'Catch the 'to be default' printer and save it for the default
  49.         'printer clause below
  50.         if strPrintMapName = strDefaultPrinter Then
  51.                 set objDefaultPrinter = objPrinter
  52.         end if
  53. Next
  54.  
  55. 'Now look through list of 'should be installed' printers,
  56. 'if any are not already mapped/installed, this is corrected
  57. arrNetPrinters = colNetPrinters.Keys
  58. for each strPrinter in arrNetPrinters
  59.         'debug code commented out
  60.         'wscript.echo strPrinter + " " +  colNetPrinters.Item(strPrinter)
  61.         if colNetPrinters.Item(strPrinter) = "notfound" Then
  62.                 Err.Clear
  63.                 WshNetwork.AddWindowsPrinterConnection strPrinter
  64.                 If Err.Number <> 0 Then
  65.                         strResult = strResult & "Problem setting up missing printer: " _
  66.                                 & strPrinter & vbCR & "ErrorNum: " & Err.Number & vbCR _
  67.                                 & Err.Description & vbCR
  68.                  Else strResult = strResult & "Missing printer " & strPrinter _
  69.                                 & " was installed successfully." & vbCR
  70.                 end If
  71.         end if
  72. next
  73.  
  74. 'Check and set the Default Printer
  75. if not objDefaultPrinter.Default Then
  76.         Err.Clear
  77.         WshNetwork.SetDefaultPrinter strDefaultPrinter
  78.         If Err.Number <> 0 Then
  79.                 strResult = strResult _
  80.                         & "Problem setting strDefaultPrinter as default printer:" _
  81.                         & vbCR & "ErrorNum: " & Err.Number & vbCR & Err.Description
  82.         Else strResult = strResult & "Default printer was set to " _
  83.                 & strDefaultPrinter &vbCR
  84.         end if
  85. end if
  86. DriveMap()
  87.  
  88.  
  89. '---------------------------------------------------------------------
  90. 'setup the s-drive share
  91. '---------------------------------------------------------------------
  92. sub DriveMap()
  93. 'remove any existing mapping
  94. WshNetwork.RemoveNetworkDrive "S:"
  95. 'ignore any errors on de-mapping the S: drive
  96. Err.Clear
  97. WshNetwork.MapNetworkDrive "s:", "\\server\s-drive"
  98. If Err.Number <> 0 Then
  99.         strResult = strResult & "Problem mapping the S-drive: " _
  100.                 & vbCR & "ErrorNum: " & Err.Number & vbCR & Err.Description & vbCR
  101.  Else strResult = strResult & "s-drive was mapped successfully." & vbCR
  102. end If
  103.  
  104. '---------------------------------------------------------------------
  105. 'Cleanup
  106. '---------------------------------------------------------------------
  107.  
  108. 'Finally, print what happened
  109. if not strResult = "" Then
  110.         strResult = strResult & vbCR & "Drive/print map script has completed; you may close this dialog."
  111.         MsgBox strResult,,strMsgTitle
  112. end if
  113. wscript.quit
  114. end Sub



sample@email.tst+(Guest)  08 Jun 2022 
1
sample@email.tst+(Guest)  26 Aug 2022 
1
1
sample@email.tst+(Guest)  21 Jan 2025 
1
Post a comment

Your Name or E-mail ID (mandatory)

 



 RSS of this page