I work for a major university and in the past, I have successfully created a printer installer for Macs that will install our 4 types of printers. Now, our students are starting to carry IPhones and IPads around with great frequencies and want to print their documents.
I have downloaded the source code from the apple site for PrintPhoto and am using it for reference. I will want it to open photos, pdfs, and Microsoft formatted documents.
The main question I have is, how do I add the printers I want to use hard coded in? These are network Print Queues that use LPD protocol (or LPR and some people know it). I know you usually have to have printer drivers, but I wouldn't even begin to know where the driver is.
Below is what I use for mac printer installer
can anyone help?
I have downloaded the source code from the apple site for PrintPhoto and am using it for reference. I will want it to open photos, pdfs, and Microsoft formatted documents.
The main question I have is, how do I add the printers I want to use hard coded in? These are network Print Queues that use LPD protocol (or LPR and some people know it). I know you usually have to have printer drivers, but I wouldn't even begin to know where the driver is.
Below is what I use for mac printer installer
Code:
lpadmin -p PrinterName -v lpd://Server/printqueue-bwq -P /Library/Printers/PPDs/Contents/Resources/HP\\ LaserJet\\ 4250.gz
cupsenable printqueue-bwq
accept printqueue-bwq
can anyone help?