Software Uninstall Overrides¶
Software uninstall overrides are file-backed rules that provide verified unattended uninstall plans when registry uninstall metadata is incomplete or unsafe.
Override File¶
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall_overrides.json
Operator Path¶
Use Installed Software row context menu first:
- Open device
Installed Software. - Right-click software name.
- Select
Create Global Uninstall Override. - Enter verified application path and arguments.
- Save.
- Test uninstall from same row.
- Commit JSON rule later when it should become official.
JSON Shape¶
{
"windows_uninstall_overrides": [
{
"rule_id": "uninstall_override_contoso_agent",
"source": "local_installed",
"name": "Contoso Agent",
"version": "2.4.1",
"publisher_contains_any": ["Contoso Ltd"],
"strategy": "direct_command",
"quiet_uninstall_string": "\"C:\\Program Files\\Contoso Agent\\uninstall.exe\" /S",
"summary": "Uses a verified Contoso unattended uninstall command."
}
]
}
Strategies¶
direct_commanduses a verified quiet command.msi_product_codeuses MSI product code.windows_storeremoves AppX/Store package by family name.
Precedence¶
Overrides win before Borealis trusts registry QuietUninstallString metadata and before the blocklist applies.
Detailed Codex Breakdown
Related documentation¶
Implementation references¶
- Engine resolver:
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall.py - Override data file:
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall_overrides.json - Installed Software UI:
Data/Engine/Containers/webui-frontend/data/web-interface/src/Devices/Tabs/Installed_Software.jsx
Authoring notes¶
- Keep overrides narrow enough to avoid matching unrelated products.
- Prefer product code when MSI metadata is stable.
- Prefer direct command when vendor quiet command is manually verified.
- Preserve operator-facing
summaryso future operators understand why rule exists.