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 6th.GiveMeLiberty -L "6th Floor" -E -v smb://nyvprint01/6th.GiveMeLiberty -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 6thFreeFall -L "6th Floor" -E -v lpd://10.0.200.116 -P "/Library/Printers/PPDs/Contents/Resources/RICOH IM 6000" -o printer-is-shared=false 
lpadmin -p 6thWeThePeople -L "6th Floor" -E -v lpd://10.0.200.105 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false 
lpadmin -p 6thEinsteinsCosmos  -L "6th Floor" -E -v lpd://10.0.200.113 -P "/Library/Printers/PPDs/Contents/Resources/Kyocera ECOSYS P3155dn.ppd" -o printer-is-shared=false
exit 0