Skip to main content
Answer

Deploying Software

  • December 29, 2020
  • 4 replies
  • 21 views

Forum|alt.badge.img+4

Hey all, what's your favorite way of packaging up software for deployment in Jamf? Is composer still the way to go or is there a better solution?

I'm mostly focused on M1 versions of Chrome, Slack, and Chrome for new macs I'm deploying.

Best answer by sdagley

@amorse In my opinion creating a package in Composer should be your last resort. If at all possible use AutoPkg (and the AutoPkgr GUI for it) to automate checks for, and downloads of, new installers which can either be manually or automatically uploaded to your JSS. You'll find many pre-built recipes, and can define your own as needed.

Another option is Installomator which is script that can be deployed and run via Jamf Pro to directly download and install download a large list of applications. You can add apps as needed, and the built-in list is constantly being updated.

4 replies

junjishimazaki
Forum|alt.badge.img+10
  • New Contributor
  • December 30, 2020

When it comes to free applications, I prefer to script my software deployment that way I don't have to keep updating the package. I use the script to curl to download the latest installer file and then install it. If I can't script the installer file then I use Composer to package the installer. I haven't tried my scripts yet on the M1 macs yet since I haven't received any new Macs to test with.


sdagley
Forum|alt.badge.img+25
  • Jamf Heroes
  • Answer
  • December 30, 2020

@amorse In my opinion creating a package in Composer should be your last resort. If at all possible use AutoPkg (and the AutoPkgr GUI for it) to automate checks for, and downloads of, new installers which can either be manually or automatically uploaded to your JSS. You'll find many pre-built recipes, and can define your own as needed.

Another option is Installomator which is script that can be deployed and run via Jamf Pro to directly download and install download a large list of applications. You can add apps as needed, and the built-in list is constantly being updated.


emily
Forum|alt.badge.img+24
  • Hall of Fame
  • December 31, 2020

AutoPKG is definitely the way to go for third party packages. The catalog is extensive and the tool itself is well-documented and well-maintained.


Forum|alt.badge.img+4
  • Author
  • Contributor
  • January 4, 2021

Wow, you guys are THE best. Thanks to everyone for the input.