Can anyone let me know if it is possible to select a printer tray in a script? I have a simple script but one of the printer’s trays needs to be established. Here is my script
Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\SERVER\Pod4"
WshNetwork.AddWindowsPrinterConnection "\\SERVER\Pod4Super"
WshNetwork.SetDefaultPrinter \\SERVER\Pod4
How do I send the job sent to Pod4Super to TRAY 2?
Thanks in advance.
Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\SERVER\Pod4"
WshNetwork.AddWindowsPrinterConnection "\\SERVER\Pod4Super"
WshNetwork.SetDefaultPrinter \\SERVER\Pod4
How do I send the job sent to Pod4Super to TRAY 2?
Thanks in advance.