salt-states/printers.sls

18 lines
683 B
Plaintext
Raw Normal View History

2022-10-05 14:30:38 -04:00
# install the driver inf
"PNPUtil.exe /add-driver \\\\ucs\\software\\drivers\\dell\\c2660dn_PS\\DLPRFAL.inf /install":
cmd.run:
- shell: powershell
- unless: Get-PrinterDriver -Name 'Dell C2660dn Color Laser PS'
# add the driver as a printer driver
"Add-PrinterDriver -Name 'Dell C2660dn Color Laser PS'":
cmd.run:
- shell: powershell
- unless: Get-PrinterDriver -Name 'Dell C2660dn Color Laser PS'
# add the printer
"Add-Printer -Name ClassroomColor -PortName 'http://ucs.sawtooth.claremontmakerspace.org:631/printers/ClassroomColor' -DriverName 'Dell C2660dn Color Laser PS'":
cmd.run:
- shell: powershell
- unless: Get-Printer -Name ClassroomColor