Deploy Browser Extension via Intune
Learn how to deploy the Kabeen extension on browsers via Microsoft Intune
Microsoft Intune allows automatic deployment of the Kabeen browser extension on Windows workstations managed by your organization.
Prerequisites
- Administrator rights on Microsoft 365 and Intune
- Intune licenses for affected workstations
- Native Kabeen agent already deployed (recommended)
Deployment on Microsoft Edge
Step 1: Create a Configuration Profile
- Log in to the Microsoft Intune admin center
- Navigate to Devices > Configuration > Create > New policy
- Select:
- Platform: Windows 10 and later
- Profile type: Templates > Administrative template
Step 2: Configure Force Installation
- In the profile, search for Microsoft Edge > Extensions
- Enable Control which extensions are installed silently
- Add the extension ID:
jgdflahjneomipldehpneckiplknghbc
Step 3: Assign the Profile
- In the Assignments tab, select user or device groups
- Click Create to deploy the profile
Deployment on Google Chrome
Step 1: Import Chrome ADMX Template
- Download the Chrome ADMX templates
- In Intune, navigate to Devices > Configuration > Import ADMX
- Import the
chrome.admxandchrome.admlfiles
Step 2: Create the Policy
- Create a new policy using the imported Chrome template
- Configure Extensions > Force-installed apps and extensions
- Add:
hkmgmmaopoofgchofbngplopnhajbojc;https://clients2.google.com/service/update2/crx
Configuration without the native agent
The extension normally retrieves the user's connection code and organization from the Kabeen native agent. When the agent is not deployed, you can authenticate and pre-configure the extension through the browser's managed storage (Windows registry keys).
Three values must be set under an Authentication subkey:
| Value | Type | Description |
|---|---|---|
ApiToken | REG_SZ | Workspace connection code (Settings > Rover Management) |
StructureId | REG_SZ | Identifier of the structure (subsidiary) |
TeamId | REG_SZ | Identifier of the business service (team) |
Registry paths by browser:
- Microsoft Edge:
HKLM\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\jgdflahjneomipldehpneckiplknghbc\policy\Authentication - Google Chrome:
HKLM\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\hkmgmmaopoofgchofbngplopnhajbojc\policy\Authentication
With Intune, deploy these values via a PowerShell script (Devices > Scripts and remediations) or a configuration profile that writes to the registry. Example for Google Chrome:
$key = "HKLM:\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\hkmgmmaopoofgchofbngplopnhajbojc\policy\Authentication"
New-Item -Path $key -Force | Out-Null
New-ItemProperty -Path $key -Name "ApiToken" -Value "YOUR_CONNECTION_CODE" -PropertyType String -Force | Out-Null
New-ItemProperty -Path $key -Name "StructureId" -Value "STRUCTURE_ID" -PropertyType String -Force | Out-Null
New-ItemProperty -Path $key -Name "TeamId" -Value "TEAM_ID" -PropertyType String -Force | Out-NullThe
StructureIdandTeamIdidentifiers correspond to the structures (subsidiaries) and business services (teams) modeled in Kabeen's Organization view.
Verify Deployment
After deployment, verify on a workstation:
- Open the relevant browser
- Access extension settings
- The Kabeen extension should appear as installed by your organization
- It cannot be disabled by the user
Troubleshooting
Extension doesn't appear
- Verify the policy is assigned to the user/device
- Manually sync policies:
Settings > Accounts > Work access > Info > Sync - Wait up to 8 hours for full propagation
Extension can be disabled
- Ensure installation mode is "Force-installed"
- Verify no other policy contradicts this configuration