Hello,
The script below works in Mountain Lion, but not Mavericks. We put this code into Automator as "Run Shell Script" and save it as an app. Users would double-click it to add printers. In Mavericks, it adds but when they print, it prints out garble.
Thinking it is driver. Is the code below broken in Mavericks?
****
PrinterName='Thomas - Guidance Main HP 4015'
CUPSPort='Tho_154_73'
Driver='HP LaserJet P4010_P4510 Series.gz'
/usr/sbin/lpadmin -p $CUPSPort -E -v http://printexample.com/printers/$CUPSPort -P "/Volumes/example/public/Printer Install/DriversOSX/$Driver" -D "$PrinterName" -o printer-is-shared=false
