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 7th.Gulp -L "7th Floor" -E -v smb://nyvprint01/7th.Gulp -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 7thBonk -L "7th Floor" -E -v lpd://10.0.200.110 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false lpadmin -p 7thOurOrigins -L "7th Floor" -E -v lpd://10.0.200.107 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false lpadmin -p 7thStiff -L "7th Floor" -E -v lpd://10.0.200.109 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false exit 0