Jump to content

Set Default Copies on Printer


 Share

Recommended Posts

Does anyone know how to set the Default Copies count on a printer please?

I tried...

$wbemFlagReturnImmediately = 0x10
$wbemFlagForwardOnly = 0x20
$colItems = ""
$strComputer = "localhost"


$objWMIService = ObjGet("winmgmts:\\" & $strComputer & "\")
$colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_PrinterConfiguration", "WQL", _
$wbemFlagReturnImmediately + $wbemFlagForwardOnly)


For $objItem In $colItems
ConsoleWrite($objItem.DeviceName & @CRLF)
If $objItem.DeviceName = "CUSTOM TG2480-H" then $objItem.Copies = 2
Next

But it didn't work

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...