I dont know if this is the right forum but here goes.
I am completely new to VBScript, and I'm trying to set some printer preferences through code. This is what I have so far, and I just cant figure out how to set the paper size.
Code:
' Example VBScript to set the local Default Printer
' Guy Thomas February 2004.
' ******************************
Option Explicit
Dim objPrinter
Set objPrinter = CreateObject("WScript.Network")
objPrinter.SetDefaultPrinter "\\Printers1\SDP003"
WScript.Quit
' End of example VBScript