Step 01 — Prerequisites
Confirm the following before proceeding:- Jamf Pro admin access (scope permitting profile creation, package upload, policies, and scripts).
- A valid Origin provisioning JWT (install token) — obtain from the Origin console under Endpoints → Connect.
- The Origin macOS installer — download from the Origin console under Endpoints → Connect. Delivered as
Origin.pkg. - The configuration profile and install script bundled with this guide (see files inventory in Step 03).
- Target macOS devices enrolled in Jamf Pro with User-Approved MDM (UAMDM).
Where to find itBoth the
.pkg installer and the provisioning JWT live in the same place in the Origin console: Endpoints → Connect. Grab both before moving into Jamf.Download the configuration profile from MDM Overview: origin-privacy.mobileconfig. The install script is provided in full in Step 05 below.Step 02 — Scope of Automation
One macOS permission stands between the installer and a fully registered agent. MDM pre-approves it — no user interaction is required.
Deploying the privacy configuration profile before the package installs ensures the agent can register silently without any user-facing permission dialogs.
Step 03 — Files
The configuration profile is downloadable from the docs site. The install script is reproduced in full in Step 05 — copy it straight into Jamf.Identifiers
Step 04 — Deployment Order
The privacy configuration profile should land on the endpoint before the.pkg installs — otherwise the agent hits a Full Disk Access prompt on first run. Follow this order:
- Privacy preferences (PPPC) (
origin-privacy.mobileconfig) — Grants Full Disk Access to the Origin agent based on Team IDD3C73MWD7Yand bundle IDcom.origin.agent. Eliminates the TCC prompt that would otherwise appear on first run. - The Origin .pkg (via policy) (
Origin.pkg) — The installer itself. Deployed via a Jamf policy with the install script running before the package to stage the provisioning JWT. See Step 05 for the full policy setup.
Step 05 — Jamf Pro Walkthrough
The following sequence assumes you have theorigin-privacy.mobileconfig profile plus the .pkg and install script staged locally.
01. Upload the configuration profile
Theorigin-privacy.mobileconfig file must be uploaded as a raw custom profile. Do not use Jamf’s built-in PPPC payload editor — it rewrites the XML and breaks the code requirement.
Upload locationThe Upload button is on the Configuration Profiles list page (Computers → Configuration Profiles), not inside the New Profile editor. Navigate to the list first, then click Upload to import a raw
.mobileconfig file.- Jamf Pro → Computers → Configuration Profiles.
- Click Upload on the list page.
- Upload
origin-privacy.mobileconfig. - Under the Scope tab, add your target devices or Smart Group.
- Click Save.
02. Upload the Origin package
- Jamf Pro → Settings → Computer Management → Packages → Upload Package.
- Upload
Origin.pkg. - Leave defaults (Category, Priority, Fill User Template, etc.) unless you have site-specific conventions.
- Click Save.
03. Create the install script
The script stages the provisioning JWT to/var/tmp/origin-provisioning-jwt so the .pkg postinstall can read it silently. The file is deleted after use.
- Jamf Pro → Settings → Scripts → New.
- Name the script
Origin Installer. - On the Script tab, paste the contents below, replacing the empty
JWT=""value with your provisioning token from Endpoints → Connect. - Click Save.
Why the token lives in the script bodyJamf script parameters are capped at 255 characters, which is too short for a provisioning JWT. The token goes directly into the script body. Any Jamf admin with script-view permissions will be able to read it — scope admin permissions accordingly.
04. Create the install policy
- Jamf Pro → Computers → Policies → New.
Packages Tab
Scripts Tab
Scope Tab
05. Trigger the policy
On a target device, run the custom trigger from Terminal:Authentication noteRunning
sudo jamf policy -event install-origin manually will prompt for interactive password authentication on the endpoint. If you prefer the install to run without any user interaction, simply wait for the device to check in naturally (on enrollment complete or the next recurring check-in) rather than forcing it with the manual command..pkg → the postinstall reads the staged JWT and registers silently → the JWT file is deleted. The MDM profile handles the Full Disk Access grant with no user interaction required.
Step 06 — Verification
Run these on a target endpoint after the policy completes. Each command confirms a different stage of the install pipeline is healthy. Profile installedOrigin menu bar icon
Once the agent is running, the Origin menu bar icon appears in the macOS menu bar. Click it to confirm the agent is active and to access two operator-friendly checks without dropping to Terminal:- Generate diagnostic report — bundles agent state, recent logs, and registration status into a single file you can hand to Origin support.
- View logs — opens the local log directory directly, equivalent to the
catcommand above without needing the date.
Origin console verificationIn the Origin console, click Computers in the left-hand navigation, then search for the target hostname. A successfully registered endpoint will appear in the list with a recent snapshot time and its detected AI agents populated.
Step 07 — Troubleshooting
Profile shows “Failed” in Jamf
Check the error in the device’s Management History. The two most common causes:- Code requirement no longer matches — the profile was recreated in Jamf’s payload editor, which rewrites the XML. Re-download origin-privacy.mobileconfig and upload it as a raw profile instead.
- Profile stuck pending — run
sudo jamf policyon the device to force a check-in.
Full Disk Access not granted despite profile
- Verify the profile actually installed:
- The PPPC profile’s code requirement matches Developer ID signed builds with Team ID
D3C73MWD7Y. Ad-hoc signed or internal development builds won’t match and FDA will not pre-grant.
JWT prompt still appears on install
- Verify the script ran successfully — check the policy logs in Jamf Pro.
- Confirm script priority is Before, not After.
- On the endpoint, confirm the file existed before the
.pkgran:/var/tmp/origin-provisioning-jwt.
Step 08 — Alternative Deployment Paths
Kandji
- Library → Add New → Custom Profile for the
.mobileconfig. - Assign to device blueprints.
- Add the
.pkgas a Custom App. - Use a pre-install script to stage the JWT (same pattern as the Jamf script above).
Headless CLI install
For scripted deployments outside of any MDM — useful for lab environments, golden-image prep, or emergency reinstalls:Without the privacy profile, the end user will see the Full Disk Access prompt on first run — this path is best reserved for managed endpoints that already have the profile from an earlier MDM state, or lab machines where the prompt is acceptable.