Software Management¶
Software Management helps operators audit installed applications, refresh software inventory, run supported uninstall actions, and govern global software metadata fixes.
Audit Software¶
- Open
Alerting & Reporting > Software Auditfor fleet-level software review. - Open a device and select
Installed Softwarefor device-level software inventory. - Use filters and sorting to find package name, version, source, publisher, or installation metadata.
Refresh Inventory¶
Use Query Software Changes when you need a fresh software snapshot after install, uninstall, override, or remediation work.
Uninstall Software¶
- Open a device.
- Open
Installed Software. - Right-click supported software row.
- Select
Uninstall. - Track output in Activity History and refresh software inventory after completion.
Borealis only exposes uninstall when it can build a supported unattended uninstall plan.
Manage Global Overrides¶
Right-click software rows to create:
- Global icon overrides.
- Global uninstall overrides.
- Global uninstall blocks.
- Uninstall unblock rules.
These hotload immediately in the Engine. Commit file-backed rules later when they should ship with Borealis.
Detailed Codex Breakdown
API endpoints¶
POST /api/device/software/<hostname>/refresh- request fresh software inventory.POST /api/device/software/<hostname>/icon-override- save hotloaded icon override.POST /api/device/software/<hostname>/uninstall-override- save hotloaded uninstall override.POST /api/device/software/<hostname>/uninstall-block- save hotloaded block rule.POST /api/device/software/<hostname>/uninstall-unblock- remove matching block rules.POST /api/device/software/<hostname>/uninstall- queue supported uninstall quick job.GET /api/agent/software-management/overrides- agent override payload fetch.
Related documentation¶
- Software Icon Overrides
- Software Uninstall Overrides
- Software Uninstall Blocklist
- Device Filters
- API Reference
Source map¶
- Installed Software UI:
Data/Engine/Containers/webui-frontend/data/web-interface/src/Devices/Tabs/Installed_Software.jsx - Software APIs:
Data/Engine/Containers/api-backend/data/services/API/devices/software_uninstall.py - Icon override loader:
Data/Engine/Containers/api-backend/data/services/API/devices/software_icons.py - Agent software role:
Data/Agent/internal/roles/software_management/
Runtime behavior¶
- Agent publishes raw software blobs for device detail display.
- Engine normalizes rows into
device_software_inventoryfor reliable filtering. - Uninstall actions run through signed quick-job execution and write Activity History.
- Override and blocklist JSON files live under
Data/Engine/Containers/api-backend/data/services/API/devices/.