Remove AIDR Standalone Browser Extension v1.x.x
After you deploy and verify the Falcon Endpoint collector, remove the standalone AIDR browser extension from Chrome and Edge on managed endpoints. This completes the migration from the standalone browser collector to the Falcon Endpoint collector, which uses the Falcon browser extension.
-
The Falcon browser extension supports only Google Chrome and Microsoft Edge. If you also deployed the standalone AIDR browser extension on Firefox, keep it installed.
-
The standalone AIDR extension automatically disables itself when the Falcon browser extension with the AIDR module is present. You can remove the standalone extension after verifying the Falcon Endpoint collector is active.
Requirements
- Before removing the standalone extension, confirm that the Falcon Endpoint collector is working:
- The Falcon Endpoint collector is deployed and assigned to the target host groups. For setup steps, see Deploy .
- Events from the Falcon Endpoint collector appear in AIDR Findings with the
FBEX(Falcon Browser Extension) tag. For verification steps, see Verify deployment .
- The standalone AIDR browser extension v1.x.x is deployed on the same endpoints. To confirm which version is installed, open the AIDR extension from the browser toolbar.
Remove AIDR browser extension
Select the removal method that matches how you originally deployed the extension.
- Chrome:
- Edge:
Chrome
Chrome Enterprise
Remove extension
- Log in to the Google Admin console. Click the main menu icon and go to Chrome browser > Apps & extensions.
- Select the OU where the AIDR extension is deployed.
- Click the Users & browsers tab.
- Select the AIDR extension (
gppamppofhecmnlhmhdobepbifmpafmp) in the App list. - Click the delete icon.
- In Delete AIDR, click DELETE.
After enrolled browsers check in, Chrome removes the extension automatically.
Verify removal
-
In the Google Admin console, go to Chrome browser > Apps & extensions. Confirm that the AIDR extension no longer appears in the App list for the target OU.
-
On a target machine:
- Restart the browser and go to
chrome://extensions. Confirm that the AIDR extension is not listed. - Go to
chrome://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries.
- Restart the browser and go to
Jamf (macOS)
Remove extension
- In Jamf, go to Computers > Configuration Profiles.
- Click the configuration profile that manages the AIDR Chrome extension.
- On the configuration profile page, under Options, expand Application & Custom Settings and click External Applications.
- Choose one of the following options based on your configuration:
- If the profile manages only the AIDR extension and you want to keep it on specific machines, adjust its scope:
- Click Edit.
- Click Scope to adjust targets, limitations, and exclusions for the profile scope.
- Click Save.
- In Redistribution Options:
- Select Distribute to All.
- Click Save.
- If the profile manages only the AIDR extension and you want to remove it from all machines, delete the profile:
- Click Delete to remove the entire configuration profile.
- Click Delete to confirm.
- If the profile manages other extensions, remove only the AIDR payloads:
- Click Edit.
- Remove the force-install entry:
- Find the payload with com.google.Chrome preference domain.
- In Preference Domain Properties > ExtensionInstallForcelist, remove the entry containing the AIDR extension ID (
gppamppofhecmnlhmhdobepbifmpafmp).
- Remove the extension settings payload:
- Find the payload with the preference domain:
com.google.Chrome.extensions.gppamppofhecmnlhmhdobepbifmpafmp - Delete this payload.
- Find the payload with the preference domain:
- Click Save.
- In Redistribution Options:
- Select Distribute to All.
- Click Save.
- If the profile manages only the AIDR extension and you want to keep it on specific machines, adjust its scope:
Verify removal
-
If you edited the profile rather than deleting it, review it in Jamf:
Verify that no remaining payloads reference the old extension ID (
gppamppofhecmnlhmhdobepbifmpafmp), or that target machines are no longer included in the profile scope. -
On a target machine:
-
Restart Google Chrome and go to
chrome://extensions. Confirm that the AIDR extension is not listed. -
Go to
chrome://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries. -
Verify that the old managed preferences file no longer exists:
find /Library/Managed\ Preferences -name "com.google.Chrome.extensions.gppamppofhecmnlhmhdobepbifmpafmp.plist" 2>/dev/nullIf the command returns no output, the old configuration has been removed.
tip:To apply the profile update immediately without waiting for the next scheduled check-in, run this command on the target machine:
sudo jamf recon -
Microsoft Intune (Windows)
Remove extension
-
Log in to Microsoft Intune at
intune.microsoft.com. -
Remove the force-install policy:
- Go to Devices > Manage devices > Configuration > Policies.
- Open the Settings Catalog policy that deploys the AIDR Chrome extension.
- Expand Configuration settings.
- Choose one of the following options based on your configuration:
- If the profile manages only the AIDR extension, delete the profile.
- On the device configuration profile page, click Delete.
- Click OK to confirm deletion.
- If the profile manages other extensions, edit the profile and remove the AIDR entry:
- Click Edit in Configuration settings.
- In Google > Google Chrome > Extensions, select the entry containing the AIDR extension ID:
gppamppofhecmnlhmhdobepbifmpafmp - Click Delete.
- Click Review + save.
- Click Save.
- If the profile manages only the AIDR extension, delete the profile.
note:Intune notifies online devices when a policy changes. The policy update typically applies within minutes. If a device is offline, the update applies at the next scheduled check-in, up to 8 hours.
To confirm a specific device received the update:
- Go to Devices > All devices.
- Select the device.
- Click Sync.
-
Remove the configuration Platform Script:
- Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Delete the Platform Script that configures the AIDR Chrome extension.
-
Clean up residual registry values by deploying a cleanup script. Copy the following script and save it as
Remove-AIDR-Chrome-Extension.ps1.Remove-AIDR-Chrome-Extension.ps1$ErrorActionPreference = "Stop"
try {
$extensionId = "gppamppofhecmnlhmhdobepbifmpafmp"
# Remove force-install entry
$forcelistPath = "HKLM:\SOFTWARE\Policies\Google\Chrome\ExtensionInstallForcelist"
$item = Get-Item -Path $forcelistPath -ErrorAction SilentlyContinue
if ($item) {
$item.GetValueNames() | ForEach-Object {
if ($item.GetValue($_) -match [regex]::Escape($extensionId)) {
Remove-ItemProperty -Path $forcelistPath -Name $_
}
}
}
# Remove extension configuration
$configPath = "HKLM:\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\$extensionId"
if (Test-Path $configPath) {
Remove-Item -Path $configPath -Recurse -Force
}
Write-Output "AIDR Chrome extension removed."
Exit 0
} catch {
Write-Error "Failed: $($_.Exception.Message)"
Exit 1
} -
Add a Platform Script:
- Log in to Microsoft Intune at
intune.microsoft.com. - Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Click + Add and select Windows 10 and later.
- On the Add PowerShell script page:
- Basics > Name:
Remove AIDR Chrome Extension - Click Next.
- Script settings:
- Script location: Select the
Remove-AIDR-Chrome-Extension.ps1file. - Run this script using the logged on credentials:
No(run as System) - Enforce script signature check:
No - Run script in 64-bit PowerShell host:
Yes
- Script location: Select the
- Click Next.
- Assignments: Add groups, users, or devices assigned to the same groups that had the AIDR extension.
- Click Next.
- Review + create: Review script configuration.
- Click Create.
- Basics > Name:
note:Platform scripts don't execute immediately. Registry changes can take additional time to appear after the script runs.
To trigger the script sooner on a target device, restart the machine or restart the Intune Management Extension service:
Restart-Service -Name IntuneManagementExtensionAllow a few minutes for the script to execute after the service restart.
- Log in to Microsoft Intune at
Verify removal
-
In the Intune admin center, verify the cleanup script executed successfully:
- Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Click the cleanup script name.
- Verify that Device status and User status show Succeeded.
note:Status reports update after each device check-in and can take several minutes to reflect the latest state. Wait for devices to check in before you review the results.
-
On a target machine:
-
Verify that the extension is no longer in the registry:
reg query "HKLM\SOFTWARE\Policies\Google\Chrome" /s /f "gppamppofhecmnlhmhdobepbifmpafmp"Expected output:
End of search: 0 match(es) found. -
Restart the browser and go to
chrome://extensions. Confirm that the AIDR extension is not listed. -
Go to
chrome://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries.
tip:To force the cleanup script to run immediately without waiting for the next device check-in, restart the Intune Management Extension service on the target machine:
Restart-Service IntuneManagementExtension -
After you verify removal across target machines, delete the cleanup Platform Script from the Intune admin center.
Group Policy (Windows)
Remove extension
- Open Group Policy Management Editor for the GPO that deploys the AIDR Chrome extension.
- Remove the force-install entry:
- Go to Computer Configuration > Policies > Administrative Templates > Google > Google Chrome > Extensions.
- Double-click Configure the list of force-installed apps and extensions.
- Click Show....
- Choose one of the following options based on your configuration:
- If the AIDR extension is the only entry:
- Click Cancel to close Show Contents.
- Select Not Configured or Disabled in Configure the list of force-installed apps and extensions.
- Click OK to close Configure the list of force-installed apps and extensions.
- If other extensions are listed:
- Remove the entry containing the AIDR extension ID (
gppamppofhecmnlhmhdobepbifmpafmp). - Click OK to close Show Contents.
- Click OK to close Configure the list of force-installed apps and extensions.
- Remove the entry containing the AIDR extension ID (
- If the AIDR extension is the only entry:
- Remove computer-level registry preference items:
- Go to Computer Configuration > Preferences > Windows Settings > Registry.
- Delete the registry items with key paths containing
gppamppofhecmnlhmhdobepbifmpafmp(items forurlTemplate,registrationIdentity,hostname).
- Remove user-level registry preference items:
- Go to User Configuration > Preferences > Windows Settings > Registry.
- Delete the registry items with key paths containing
gppamppofhecmnlhmhdobepbifmpafmp(items foruserId,userFullName).
- Clean up residual registry values on client machines.
GPO Registry Preferences don't automatically remove registry values already written to clients.
Use GPO-native
Deleteaction items to remove them.- Go to Computer Configuration > Preferences > Windows Settings > Registry.
- Right-click and select New > Registry Item.
Use these values in New Registry Properties:
- Action:
Delete - Hive:
HKEY_LOCAL_MACHINE - Key Path:
SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp
- Action:
- Click OK.
- Go to User Configuration > Preferences > Windows Settings > Registry.
- Right-click and select New > Registry Item.
Use these values in New Registry Properties:
- Action:
Delete - Hive:
HKEY_CURRENT_USER - Key Path:
SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp
- Action:
- Click OK.
Apply policy
Domain-joined machines automatically refresh Group Policy every 90 minutes, with a random offset of up to 30 minutes. Computer Configuration settings also apply at startup, and User Configuration settings at logon.
To apply the updated policy sooner, choose one of the following Group Policy update methods:
-
Run
Invoke-GPUpdatefrom a domain controller or an admin workstation with Remote Server Administration Tools (RSAT) to remotely trigger a refresh on target machines:Invoke-GPUpdate -Computer "<target-machine-name>" -RandomDelayInMinutes 0 -Force -
In the Group Policy Management console, right-click the target OU and select Group Policy Update. This creates a remote scheduled task on each computer in the OU, with up to a 10-minute random delay.
-
To test on a target machine, run:
gpupdate /force
Verify removal
-
On a target machine:
-
Restart the browser and go to
chrome://extensions. Confirm that the AIDR extension is not listed. -
Go to
chrome://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries. -
Verify that the extension is no longer in the registry:
Test-Path -Path "HKLM:\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp"Test-Path -Path "HKCU:\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp"Expected output:
Falsefor both.
-
After you confirm removal across target machines, remove the temporary Delete items from the GPO to keep the configuration clean.
Microsoft Edge
Jamf (macOS)
Remove extension
- In Jamf, go to Computers > Configuration Profiles.
- Click the configuration profile that manages the AIDR Edge extension.
- On the configuration profile page, under Options, expand Application & Custom Settings and click External Applications.
- Choose one of the following options based on your configuration:
- If the profile manages only the AIDR extension and you want to keep it on specific machines, adjust its scope:
- Click Edit.
- Click Scope to adjust targets, limitations, and exclusions for the profile scope.
- Click Save.
- In Redistribution Options:
- Select Distribute to All.
- Click Save.
- If the profile manages only the AIDR extension and you want to remove it from all machines, delete the profile:
- Click Delete to remove the entire configuration profile.
- Click Delete to confirm.
- If the profile manages other extensions, remove only the AIDR payloads:
- Click Edit.
- Remove the force-install entry:
- Find the payload with com.microsoft.Edge preference domain.
- In Preference Domain Properties > ExtensionInstallForcelist, remove the entry containing the AIDR extension ID (
gppamppofhecmnlhmhdobepbifmpafmp).
- Remove the extension settings payload:
- Find the payload with the preference domain:
com.microsoft.Edge.extensions.gppamppofhecmnlhmhdobepbifmpafmp - Delete this payload.
- Find the payload with the preference domain:
- Click Save.
- In Redistribution Options:
- Select Distribute to All.
- Click Save.
- If the profile manages only the AIDR extension and you want to keep it on specific machines, adjust its scope:
Verify removal
-
If you edited the profile rather than deleting it, review it in Jamf:
Verify that no remaining payloads reference the old extension ID (
gppamppofhecmnlhmhdobepbifmpafmp), or that target machines are no longer included in the profile scope. -
On a target machine:
-
Restart Microsoft Edge and go to
edge://extensions. Confirm that the AIDR extension is not listed. -
Go to
edge://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries. -
Verify that the old managed preferences file no longer exists:
find /Library/Managed\ Preferences -name "com.microsoft.Edge.extensions.gppamppofhecmnlhmhdobepbifmpafmp.plist" 2>/dev/nullIf the command returns no output, the old configuration has been removed.
tip:To apply the profile update immediately without waiting for the next scheduled check-in, run this command on the target machine:
sudo jamf recon -
Microsoft Intune (Windows)
Remove extension
-
Log in to Microsoft Intune at
intune.microsoft.com. -
Remove the force-install policy:
- Go to Devices > Manage devices > Configuration > Policies.
- Open the Settings Catalog policy that deploys the AIDR Edge extension.
- Expand Configuration settings.
- Choose one of the following options based on your configuration:
- If the profile manages only the AIDR extension, delete the profile.
- On the device configuration profile page, click Delete.
- Click OK to confirm deletion.
- If the profile manages other extensions, edit the profile and remove the AIDR entry:
- Click Edit in Configuration settings.
- In Microsoft Edge > Extensions, select the entry containing the AIDR extension ID:
gppamppofhecmnlhmhdobepbifmpafmp - Click Delete.
- Click Review + save.
- Click Save.
- If the profile manages only the AIDR extension, delete the profile.
note:Intune notifies online devices when a policy changes. The policy update typically applies within minutes. If a device is offline, the update applies at the next scheduled check-in, up to 8 hours.
To confirm a specific device received the update:
- Go to Devices > All devices.
- Select the device.
- Click Sync.
-
Remove the configuration Platform Script:
- Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Delete the Platform Script that configures the AIDR Edge extension.
-
Clean up residual registry values by deploying a cleanup script. Copy the following script and save it as
Remove-AIDR-Edge-Extension.ps1.Remove-AIDR-Edge-Extension.ps1$ErrorActionPreference = "Stop"
try {
$extensionId = "gppamppofhecmnlhmhdobepbifmpafmp"
# Remove force-install entry
$forcelistPath = "HKLM:\SOFTWARE\Policies\Microsoft\Edge\ExtensionInstallForcelist"
$item = Get-Item -Path $forcelistPath -ErrorAction SilentlyContinue
if ($item) {
$item.GetValueNames() | ForEach-Object {
if ($item.GetValue($_) -match [regex]::Escape($extensionId)) {
Remove-ItemProperty -Path $forcelistPath -Name $_
}
}
}
# Remove extension configuration
$configPath = "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\$extensionId"
if (Test-Path $configPath) {
Remove-Item -Path $configPath -Recurse -Force
}
Write-Output "AIDR Edge extension removed."
Exit 0
} catch {
Write-Error "Failed: $($_.Exception.Message)"
Exit 1
} -
Add a Platform Script:
- Log in to Microsoft Intune at
intune.microsoft.com. - Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Click + Add and select Windows 10 and later.
- On the Add PowerShell script page:
- Basics > Name:
Remove AIDR Edge Extension - Click Next.
- Script settings:
- Script location: Select the
Remove-AIDR-Edge-Extension.ps1file. - Run this script using the logged on credentials:
No(run as System) - Enforce script signature check:
No - Run script in 64-bit PowerShell host:
Yes
- Script location: Select the
- Click Next.
- Assignments: Add groups, users, or devices assigned to the same groups that had the AIDR extension.
- Click Next.
- Review + create: Review script configuration.
- Click Create.
- Basics > Name:
note:Platform scripts don't execute immediately. Registry changes can take additional time to appear after the script runs.
To trigger the script sooner on a target device, restart the machine or restart the Intune Management Extension service:
Restart-Service -Name IntuneManagementExtensionAllow a few minutes for the script to execute after the service restart.
- Log in to Microsoft Intune at
Verify removal
-
In the Intune admin center, verify the cleanup script executed successfully:
- Go to Devices > Manage devices > Scripts and remediations > Platform scripts.
- Click the cleanup script name.
- Verify that Device status and User status show Succeeded.
note:Status reports update after each device check-in and can take several minutes to reflect the latest state. Wait for devices to check in before you review the results.
-
On a target machine:
-
Verify that the extension is no longer in the registry:
reg query "HKLM\SOFTWARE\Policies\Microsoft\Edge" /s /f "gppamppofhecmnlhmhdobepbifmpafmp"Expected output:
End of search: 0 match(es) found. -
Restart the browser and go to
edge://extensions. Confirm that the AIDR extension is not listed. -
Go to
edge://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries.
tip:To force the cleanup script to run immediately without waiting for the next device check-in, restart the Intune Management Extension service on the target machine:
Restart-Service IntuneManagementExtension -
After you verify removal across target machines, delete the cleanup Platform Script from the Intune admin center.
Group Policy (Windows)
Remove extension
- Open Group Policy Management Editor for the GPO that deploys the AIDR Edge extension.
- Remove the force-install entry:
- Go to Computer Configuration > Policies > Administrative Templates > Microsoft Edge > Extensions.
- Double-click Control which extensions are installed silently.
- Click Show....
- Choose one of the following options based on your configuration:
- If the AIDR extension is the only entry:
- Click Cancel to close Show Contents.
- Select Not Configured or Disabled in Control which extensions are installed silently.
- Click OK to close Control which extensions are installed silently.
- If other extensions are listed:
- Remove the entry containing the AIDR extension ID (
gppamppofhecmnlhmhdobepbifmpafmp). - Click OK to close Show Contents.
- Click OK to close Control which extensions are installed silently.
- Remove the entry containing the AIDR extension ID (
- If the AIDR extension is the only entry:
- Remove computer-level registry preference items:
- Go to Computer Configuration > Preferences > Windows Settings > Registry.
- Delete the registry items with key paths containing
gppamppofhecmnlhmhdobepbifmpafmp(items forurlTemplate,registrationIdentity,hostname).
- Remove user-level registry preference items:
- Go to User Configuration > Preferences > Windows Settings > Registry.
- Delete the registry items with key paths containing
gppamppofhecmnlhmhdobepbifmpafmp(items foruserId,userFullName).
- Clean up residual registry values on client machines.
GPO Registry Preferences don't automatically remove registry values already written to clients.
Use GPO-native
Deleteaction items to remove them.- Go to Computer Configuration > Preferences > Windows Settings > Registry.
- Right-click and select New > Registry Item.
Use these values in New Registry Properties:
- Action:
Delete - Hive:
HKEY_LOCAL_MACHINE - Key Path:
SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp
- Action:
- Click OK.
- Go to User Configuration > Preferences > Windows Settings > Registry.
- Right-click and select New > Registry Item.
Use these values in New Registry Properties:
- Action:
Delete - Hive:
HKEY_CURRENT_USER - Key Path:
SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp
- Action:
- Click OK.
Apply policy
Domain-joined machines automatically refresh Group Policy every 90 minutes, with a random offset of up to 30 minutes. Computer Configuration settings also apply at startup, and User Configuration settings at logon.
To apply the updated policy sooner, choose one of the following Group Policy update methods:
-
Run
Invoke-GPUpdatefrom a domain controller or an admin workstation with Remote Server Administration Tools (RSAT) to remotely trigger a refresh on target machines:Invoke-GPUpdate -Computer "<target-machine-name>" -RandomDelayInMinutes 0 -Force -
In the Group Policy Management console, right-click the target OU and select Group Policy Update. This creates a remote scheduled task on each computer in the OU, with up to a 10-minute random delay.
-
To test on a target machine, run:
gpupdate /force
Verify removal
-
On a target machine:
-
Restart the browser and go to
edge://extensions. Confirm that the AIDR extension is not listed. -
Go to
edge://policyand click Reload policies. Confirm that no references togppamppofhecmnlhmhdobepbifmpafmpappear under force-install or extension policy entries. -
Verify that the extension is no longer in the registry:
Test-Path -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp"Test-Path -Path "HKCU:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\gppamppofhecmnlhmhdobepbifmpafmp"Expected output:
Falsefor both.
-
After you confirm removal across target machines, remove the temporary Delete items from the GPO to keep the configuration clean.
Next steps
-
After removal, monitor AIDR logs to confirm events continue to flow through the Falcon Endpoint collector.
For more information, see Visibility & Monitoring .
note:Removing the extension doesn't affect data previously collected by the standalone browser extension.
-
Optionally, remove unused browser collector policies and collector registrations from the AIDR console. Removing these doesn't affect existing logs.
For more information, see Policy Configuration and Browser Collectors .
-
If you need to reinstall the standalone browser extension, see Browser Collectors .