Posted on 08-07-2015 06:36 AM
I seen another post that was kind of old that explained about adding options for a Bizhub 754 copier that was helpful looking for a script to add a Bizhub Pro 951 to a Mac computer.
Here is what I have and the options that are on the copier that I need to make available on the Mac side. The only 2 options that I can get to show up are PaperSources and Finisher, having trouble adding SaddleSticher and KOPunch. Driver is KONICAMINOLTA951.gz 10.10 for Mac.
Any help would be great.
/usr/sbin/lpadmin -p DCS_PROD_KM -L "Dublin City Schools" -E -v lpd://printservername/printquename -P /Library/Printers/PPDs/Contents/Resources/KONICAMINOLTA951.gz -o printer-is-shared="False" -o PaperSources=PF706 -o SaddleSticher=SD510 -o Finisher=FS532 -o KOPunch=PK522-3 -o KMDuplex=Single -D "NAME"
Posted on 08-07-2015 10:01 AM
Every now and then I always find myself needing to do things in a PPD and this tool and blog post has been quite invaluable:
Posted on 08-07-2015 12:09 PM
I just had to package one of these bizhub printers. What I did was create the printer with all the settings required on a cleanly built machine. Using Composer saved the .ppd in /private/etc/cups/ppd to a .dmg. I also create a .pkg to run a Preinstall script with syntax similar to yours (see below) and saved them with a naming convention so they run in the order I want them to when the user click Install in Self Service. it seems a bit redundant but it is working perfectly for me at the moment.
pathToScript=$0
pathToPackage=$1
targetLocation=$2
targetVolume=$3
/usr/sbin/lpadmin -p UK_MFP4 -L "Country-Building-Floor" -E -v lpd://km834136.company.com/Print -P /Library/Printers/PPDs/Contents/Resources/KONICAMINOLTAC454e.gz
/usr/sbin/lpadmin -p UK_MFP4 -o printer-is-shared=false
cupsctl WebInterface=yes
exit 0 ## Success
exit 1 ## Failure
Posted on 08-09-2015 04:31 AM