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 _7thPoetryAndProse___Einstein
lpadmin -x _7thFlashBoys___Einstein
lpadmin -x _7thTheOdyssey___Einstein
lpadmin -x _7thMidnightSalvage___Einstein

lpadmin -p 7thPoetryAndProse -E -v lpd://10.0.200.104/7thPoetryAndProse -L "7th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICA MINOLTA C3100P Mono.gz" -o printer-is-shared=false -o KMDuplex=1Sided
lpadmin -p 7thTheOdyssey -E -v lpd://10.0.200.111/7thTheOdyssey -L "7th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICA MINOLTA C3100P Mono.gz" -o printer-is-shared=false -o KMDuplex=1Sided
lpadmin -p 7thMidnightSalvage -E -v lpd://10.0.200.103/7thMidnightSalvage -L "7th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICA MINOLTA C3100P Mono.gz" -o printer-is-shared=false -o KMDuplex=1Sided
lpadmin -p 7thFlashBoys -E -v lpd://10.0.200.113/7thFlashBoys -L "7th Floor" -P "/Library/Printers/PPDs/Contents/Resources/KONICAMINOLTAC659.gz" -o printer-is-shared=false -o Finisher=FS536 -o SelectColor=Grayscale -o ColorMOdel=Gray


exit 0