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 -x _6thEinsteinCosmos___Einstein
lpadmin -x _6thFreefall___Einstein
lpadmin -x _6thGiveMeLiberty___Einstein
lpadmin -x _6thWeThePeople___Einstein

lpadmin -p 6thEinsteinCosmos -E -v lpd://10.0.200.106/6thEinsteinCosmos -L "6th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICA MINOLTA C3100P Mono.gz" -o printer-is-shared=false -o KMDuplex=1Sided
lpadmin -p 6thFreefall -E -v lpd://10.0.200.116/6thFreefall -L "6th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICAMINOLTAC659.gz" -o printer-is-shared=false -o Finisher=FS536 -o SelectColor=Grayscale -o ColorMOdel=Gray
lpadmin -p 6thGiveMeLiberty -E -v lpd://10.0.200.112/6thGiveMeLiberty -L "6th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICAMINOLTAC659.gz" -o printer-is-shared=false -o Finisher=FS536 -o SelectColor=Grayscale -o ColorMOdel=Gray
lpadmin -p 6thWeThePeople -E -v lpd://10.0.200.105/6thWeThePeople -L "6th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICA MINOLTA C3100P Mono.gz" -o printer-is-shared=false -o KMDuplex=1Sided


exit 0