App Catalog
What's NewStatusRoot3
  • 🌟Introduction to App Catalog
  • 🚀Getting Started
  • đŸ—ī¸Components
  • 🔒Security & Privacy
  • ✅Requirements
  • đŸ› ī¸Configuration & Deployment
    • Configuration Profile
      • Preference Keys - Catalog Agent
      • Preference Keys - Catalog App
      • Integrating with MDM
      • Configuration Profile Example
    • Installing App Catalog
    • Granting User Notifications
    • Managed Login Item
    • Full Disk Access (PPPC)
  • đŸ•šī¸Catalog Agent
    • Catalog Agent CLI
    • Installing apps
      • Dock items
      • Mandatory Apps
      • Force reinstalling apps
    • Updating apps
      • User deferrals
      • Delaying app updates
      • Updating individual apps
  • đŸ–Ĩī¸Catalog App
    • Application modes
    • User Mode
    • Admin Mode
    • Branding
      • App and notification icon
      • In-app branding
    • Language
    • Updating apps
  • 🔌Integration Guides
    • Microsoft Intune
    • Jamf Pro
    • Kandji
    • Root3 Support App
  • Troubleshooting
    • Logging
    • Error codes
    • Uninstalling App Catalog
  • ❓How To's
    • Get an app Bundle Identifier
    • Get an SF Symbol
    • Get TeamViewer Configuration ID
Powered by GitBook
On this page

Was this helpful?

  1. Catalog Agent

Installing apps

PreviousCatalog Agent CLINextDock items

Last updated 1 year ago

Was this helpful?

Installing a single app using the Catalog Agent is very straight forward and requires two thing:

  • A valid app Bundle Identifier ()

  • Administrative privileges (using MDM as root or sudo)

To install an app with a user notification on completion:

sudo catalog -i BUNDLE_IDENTIFIER

You can also use:

sudo catalog --install BUNDLE_IDENTIFIER

For example, to install Google Chrome:

sudo catalog -i com.google.Chrome

or

sudo catalog --install com.google.Chrome

Catalog Agent notifications must be granted by the user or MDM: Granting User Notifications

To silently install an app, use the silent option in the command:

sudo catalog -i BUNDLE_IDENTIFIER -s

or

sudo catalog --install BUNDLE_IDENTIFIER --silent
đŸ•šī¸
Get an app Bundle Identifier