---
title: "Deploying the SysAid Browser Extension in Chrome via Microsoft Intune (macOS)"
slug: "deploying-the-sysaid-browser-extension-in-chrome-via-microsoft-intune-macos"
tags: ["SysAid Spaces"]
updated: 2026-06-23T10:41:49Z
published: 2026-06-23T10:41:49Z
canonical: "documentation.sysaid.com/deploying-the-sysaid-browser-extension-in-chrome-via-microsoft-intune-macos"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.sysaid.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deploying the SysAid Browser Extension in Chrome via Microsoft Intune (macOS)

Use this guide to deploy the SysAid Browser Extension to Chrome on managed macOS devices using Microsoft Intune.

This deployment method uses the Intune Custom configuration profile template to upload and deploy the SysAid configuration profile, so IT admins can centrally apply the required Chrome extension settings.

## Before you start

#### In SysAid

You’ll need your SysAid Browser Extension ID and Token.

To find them:

1. In SysAid, go to **License Manager** > **Applications Discovery.**
2. Click **Manage Connections** in the top right corner.
3. Under **Browser Extension**, click **Setup** to see the ID and Token.

## Build the profile

Before uploading the configuration profile to Microsoft Intune, create the SysAid.mobileconfig file:

1. Copy this profile template and save it as `SysAid.mobileconfig`:

```plaintext
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
  <key>PayloadContent</key>
  <array>
    <!-- Payload 1: force-install -->
    <dict>
      <key>PayloadType</key><string>com.google.Chrome</string>
      <key>PayloadUUID</key><string>UUID-ONE</string>
      <key>PayloadIdentifier</key><string>com.sysaid.chrome.forceinstall</string>
      <key>PayloadVersion</key><integer>1</integer>
      <key>ExtensionInstallForcelist</key>
      <array><string>YOUR_EXTENSION_ID;https://clients2.google.com/service/update2/crx</string></array>
      <key>ExtensionSettings</key>
      <dict><key>YOUR_EXTENSION_ID</key><dict>
        <key>installation_mode</key><string>force_installed</string>
        <key>update_url</key><string>https://clients2.google.com/service/update2/crx</string>
      </dict></dict>
    </dict>
    <!-- Payload 2: token delivery -->
    <dict>
      <key>PayloadType</key><string>com.google.Chrome.extensions.YOUR_EXTENSION_ID</string>
      <key>PayloadUUID</key><string>UUID-TWO</string>
      <key>PayloadIdentifier</key><string>com.sysaid.chrome.token</string>
      <key>PayloadVersion</key><integer>1</integer>
      <key>token</key><string>YOUR_TOKEN_VALUE</string>
    </dict>
  </array>
  <key>PayloadType</key><string>Configuration</string>
  <key>PayloadScope</key><string>System</string>
  <key>PayloadUUID</key><string>UUID-THREE</string>
  <key>PayloadIdentifier</key><string>com.sysaid.chrome.profile</string>
  <key>PayloadVersion</key><integer>1</integer>
</dict></plist>
```
2. Generate 3 unique IDs in Terminal (uuidgen && uuidgen && uuidgen) and paste them into the three UUID slots.
3. Replace YOUR_EXTENSION_ID and YOUR_TOKEN_VALUE with the values from your SysAid account.
4. Before uploading the file to Intune, validate it in Terminal to make sure the file is properly formatted: `plutil -lint SysAid.mobileconfig`.

> [!NOTE]
> Please note:
> 
> This check confirms that the file is valid. It does not confirm that the token is correct or that the extension was installed successfully.

The finished profile has two payloads:

- **com.google.Chrome** force-installs the extension from the Chrome Web Store (update URL https://clients2.google.com/service/update2/crx).
- **com.google.Chrome.extensions.YOUR_EXTENSION_ID** delivers the token.

## Deploying the extension

To deploy the extension:

1. In Intune, go to **Devices** > **macOS** > **Configuration profiles** > **Create** > **Templates** > **Custom**.
2. Upload your .mobileconfig file and set **Deployment channel = Device channel.**

> [!NOTE]
> Please note:
> 
> Use Custom, not “Preference file.” The Preference file template handles a single domain and can’t carry the second (token) payload.
3. Assign to the pilot group.
4. Click **Create**.

## Verify the setup

To verify the setup:

1. In macOS, go to **System Settings** > **General** > **Device Management**. The SysAid profile should be installed with **two payloads**.
2. Open Chrome browser and go to **chrome://policy**.
3. Look for the **ExtensionInstallForcelist** policy.
  1. If the deployment was successful, it will show the status as "OK" and you will see your 32-character Extension ID listed in the policy value.
4. Go to **chrome://extensions**.

• The extension should be present and turned on.

• It will display a building/enterprise icon next to it, indicating it is managed.

• The option to "Remove" or toggle it off will be locked out for the end-user.

## Related

- [Application Discovery Overview](/application-discovery-overview.md)
- [Application Discovery Permissions & Data Access Overview](/application-discovery-permissions-data-access-overview.md)
