mirror of
https://github.com/fleetdm/fleet
synced 2026-05-01 10:27:35 +00:00
## Summary Fixes the app name in the Slack Windows Fleet-maintained app query to match the actual Windows registry value. ## Issue The generated query was using `Slack` as the app name, but Windows registry shows the app name as `Slack (Machine - MSI)`. This caused a mismatch preventing Fleet from properly matching the installed software with the Fleet-maintained app. ## Changes - Updated `unique_identifier` in `inputs/winget/slack.json` from `"Slack"` to `"Slack (Machine - MSI)"` - Regenerated output manifest with corrected query - Version updated to 4.47.69 (latest available) ## Test plan - [x] Verify the query matches actual Windows registry value on a test host - [x] Confirm Fleet can now properly match installed Slack software
10 lines
277 B
JSON
10 lines
277 B
JSON
{
|
|
"name": "Slack",
|
|
"slug": "slack/windows",
|
|
"package_identifier": "SlackTechnologies.Slack",
|
|
"unique_identifier": "Slack (Machine - MSI)",
|
|
"installer_arch": "x64",
|
|
"installer_type": "msi",
|
|
"installer_scope": "machine",
|
|
"default_categories": ["Communication"]
|
|
}
|