Software Uninstall Blocklist¶
Software uninstall blocklist rules stop Borealis from trusting uninstall metadata that claims to be quiet but still prompts, hangs, or behaves unsafely.
Blocklist File¶
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall_blocklist.json
Operator Path¶
Use Installed Software row context menu first:
- Open device
Installed Software. - Right-click software name.
- Select
Block Uninstallation. - Enter reason other operators should see.
- Save.
- Create an uninstall override later when a verified unattended command exists.
- Commit JSON rule later when it should become official.
JSON Shape¶
{
"windows_quiet_uninstall_blocklist": [
{
"rule_id": "vendor_app_quiet_string_prompts",
"source": "local_installed",
"name_contains_any": ["Vendor App"],
"publisher_contains_any": ["Vendor Inc"],
"exe_names": ["uninstall.exe"],
"quiet_args_any": ["/s"],
"reason": "Vendor App's registered QuietUninstallString still opens an interactive confirmation prompt."
}
]
}
When To Block¶
- Registered quiet uninstall still prompts.
- Vendor installer ignores quiet flags.
- Uninstall hangs in unattended execution.
- Borealis should refuse automation until a verified override exists.
Detailed Codex Breakdown
Related documentation¶
Implementation references¶
- Engine resolver:
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall.py - Blocklist data file:
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall_blocklist.json - Installed Software UI:
Data/Engine/Containers/webui-frontend/data/web-interface/src/Devices/Tabs/Installed_Software.jsx
Behavior¶
- Use blocklist when current quiet metadata is unsafe and no verified replacement exists.
- Use uninstall override when replacement command is known.
- Overrides are checked before blocklist, so a verified override can intentionally replace a blocked quiet string.