Can someone show me how to create a VB script that always defaults to a specific printer on a network during logon?
I tried using the following script howerver, the system notifies me that the script cannot find the printer during the initial logon.
Any ideas
------------
Option Explicit
Dim objPrinter
Set objPrinter = CreateObject("WScript.Network")
objPrinter.SetDefaultPrinter "\\afapts\HPLaserJYORK2"
' End of example VBScript
-------------
Sal
I tried using the following script howerver, the system notifies me that the script cannot find the printer during the initial logon.
Any ideas
------------
Option Explicit
Dim objPrinter
Set objPrinter = CreateObject("WScript.Network")
objPrinter.SetDefaultPrinter "\\afapts\HPLaserJYORK2"
' End of example VBScript
-------------
Sal