I'd like to start off by stating that I'm new here so let me know if I frame my questions incorrectly or if I need to provide more information.
So, I'm trying to create a PowerShell script that will essentially install an IPP printer and adjust the settings.
I've been able to get the printer installed using
Add-Printer -Name \\http://printer.printer.com:2010\printer -DriverName "HP Universal Printing PCL 6" -PortName http://printer.printer.com:2010
But I'm running into a problem trying to adjust the following settings highlighted in yellow on the images via powershell.
bidirectional Form to tray assignment
With bidirectional, I tried:
Set-PrinterProperty -PrinterName "\\http://printer.printer.com:2010\printer" -"enablebidi"
And I get prompted for a value. I've entered false and $false but get the error
Set-PrinterProperty : The specified property was not found.
As for the second image's settings, I'm not even sure where to begin to adjust those using PowerShell. Any guidance would be greatly appreciated. Also, it doesn't have to be PowerShell if you know of an easier way to script this maybe a batch file etc.