Script that will remove printers attached via Einstein and connect them directly.
To add printers individual copy and paste the individual line associated with the printer.
#!/bin/bash lpadmin -p 5th.PerfectStorm -L "5th Floor" -E -v smb://nyvprint01/5th.PerfectStorm -P "/Library/Printers/PPDs/Contents/Resources/RICOH IM C6500" -o printer-is-shared=false -o auth-info-required=negotiate -o finisher=FinVOLGAG -o LargeCapacityTray=LCTMAUIF lpadmin -p 5thMasterAndCommander -L "5th Floor" -E -v lpd://10.0.200.24 -P "/Library/Printers/PPDs/Contents/Resources/RICOH IM 6000" -o printer-is-shared=false lpadmin -p 5thLiarsPoker -L "5th Floor" -E -v lpd://10.0.200.102 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false lpadmin -p 5thMoneyball -L "5th Floor" -E -v lpd://10.0.200.101 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false lpadmin -p 5thBoomerang -L "5th Floor" -E -v lpd://10.0.200.100 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false exit 0