Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
- [MacOS](deployment/chrome-edge-deployment-instructions/macos.md)
- [Firefox Deployment](deployment/firefox-deployment.md)

## Removal

- [Removal Overview](removal/README.md)
- [Windows](removal/windows/README.md)
- [Chrome and Edge](removal/windows/chrome-edge.md)
- [Firefox](removal/windows/firefox.md)

## Settings

- [General](settings/general.md)
Expand Down
12 changes: 12 additions & 0 deletions docs/removal/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
description: Guides for removing Check enterprise policies and managed settings
icon: trash
---

# Removal

Use this section to remove Check deployment configuration and managed policies from supported browsers.

{% content-ref url="windows/" %}
[windows](windows/)
{% endcontent-ref %}
16 changes: 16 additions & 0 deletions docs/removal/windows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
description: Windows removal guidance for Check managed browser configuration
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Front-matter description reads a bit ungrammatical/ambiguous ("Windows removal guidance for Check managed browser configuration"). Consider rephrasing to make it clear this page is guidance for removing Check-managed browser configuration (e.g., "Windows removal guidance for removing Check-managed browser configuration").

Suggested change
description: Windows removal guidance for Check managed browser configuration
description: Windows removal guidance for removing Check-managed browser configuration

Copilot uses AI. Check for mistakes.
icon: windows
---

# Windows

Use the pages below to remove Check enterprise settings from Windows endpoints.

{% content-ref url="chrome-edge.md" %}
[chrome-edge.md](chrome-edge.md)
{% endcontent-ref %}

{% content-ref url="firefox.md" %}
[firefox.md](firefox.md)
{% endcontent-ref %}
13 changes: 13 additions & 0 deletions docs/removal/windows/chrome-edge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Chrome and Edge (Windows)

If you need to fully remove Check managed enterprise configuration from Windows endpoints, use the uninstall script instead of manually deleting registry values.

This removes all extension-specific policy values created during deployment for both Chrome and Edge, including nested settings such as domain squatting, webhook, branding, and allowlist values.

## Uninstall Script

1. Run the script as Administrator on the target endpoint.
2. Use this when testing policy changes and you want a clean baseline before re-deploying.
3. After running, restart Chrome and Edge to ensure policy refresh.

<a href="https://raw.githubusercontent.com/CyberDrain/Check/refs/heads/main/enterprise/Remove-Windows-Chrome-and-Edge.ps1" class="button primary">Download the Uninstall Script from GitHub</a>
11 changes: 11 additions & 0 deletions docs/removal/windows/firefox.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Firefox (Windows)

Firefox enterprise removal for Check is managed through the Firefox policies file.

## General Removal Steps

1. Remove Check entries from `%ProgramFiles%\\Mozilla Firefox\\distribution\\policies.json`.
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this inline code path, the doubled backslashes (e.g., \\) will render literally in Markdown/GitBook and may look like an escaped string rather than a Windows file path. Consider using single backslashes in the displayed path (or otherwise clarifying it's a filesystem path, not a string literal).

Suggested change
1. Remove Check entries from `%ProgramFiles%\\Mozilla Firefox\\distribution\\policies.json`.
1. Remove Check entries from `%ProgramFiles%\Mozilla Firefox\distribution\policies.json`.

Copilot uses AI. Check for mistakes.
2. Remove extension lock and install directives related to Check.
3. Restart Firefox to apply policy changes.

For deployment and policy format details, see [Firefox Deployment](../../deployment/firefox-deployment.md).
Loading