Hi there. I am building an application in the text in the application's "command line" I am needing to use a colon and PMM is not letting it be interpreted as just a normal character, it is being viewed as being the divider between the installer portion and the uninstaller portion of the command.
Specifically I am wanting to install a PKG of printer drivers and then (using the &&) run an lpadmin command. Something like this...
:/usr/sbin/installer -pkg "Xerox Print Driver 4.17.1.pkg" -target "/" -verboseR && lpadmin -p printer_name -v smb://printserver/printer_name -D "printer_name" -P /Library/Printers/PPDs/Contents/Resources/Xerox\ VersaLink\ C7030.gz -o printer-is-shared=false -E -o auth-info-required=negotiate -o printer-op-policy='default' -o printer-error-policy=retry-job -o XROutputColor=PrintAsGrayscale:lpadmin -x env-gem-prt2 && pkgutil --forget com.xerox.print.xeroxPrinter.pkg:
It is the colon in "smb://" (highlighted in red, above) that is messing me up. This should be able to work if I could just get it to treat the colon as a good old hunk of text to pass through to the mac, but I dont know how. I tried "smb\://" and that did not work. (I have a workaround in that I could just build a "combined installer" in Packages that would do the trick but that seems like more work than needed.
Any suggestions???
don