From fbdb0b7937bf3f6a8f8b6dbdf3a77de048b197bf Mon Sep 17 00:00:00 2001 From: Dale Ribeiro Date: Mon, 3 Nov 2025 11:21:30 -0500 Subject: [PATCH] Delete docs/solutions/windows directory (#35107) **Related issue:** Resolves # # Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. - [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [ ] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [ ] Added/updated automated tests - [ ] Where appropriate, [automated tests simulate multiple hosts and test for host isolation](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/reference/patterns-backend.md#unit-testing) (updates to one hosts's records do not affect another) - [ ] QA'd all new/changed functionality manually For unreleased bug fixes in a release candidate, one of: - [ ] Confirmed that the fix is not expected to adversely impact load test results - [ ] Alerted the release DRI if additional load testing is needed ## Database migrations - [ ] Checked schema for all modified table for columns that will auto-update timestamps during migration. - [ ] Confirmed that updating the timestamps is acceptable, and will not cause unwanted side effects. - [ ] Ensured the correct collation is explicitly set for character columns (`COLLATE utf8mb4_unicode_ci`). ## New Fleet configuration settings - [ ] Setting(s) is/are explicitly excluded from GitOps If you didn't check the box above, follow this checklist for GitOps-enabled settings: - [ ] Verified that the setting is exported via `fleetctl generate-gitops` - [ ] Verified the setting is documented in a separate PR to [the GitOps documentation](https://github.com/fleetdm/fleet/blob/main/docs/Configuration/yaml-files.md#L485) - [ ] Verified that the setting is cleared on the server if it is not supplied in a YAML file (or that it is documented as being optional) - [ ] Verified that any relevant UI is disabled when GitOps mode is enabled ## fleetd/orbit/Fleet Desktop - [ ] Verified compatibility with the latest released version of Fleet (see [Must rule](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/workflows/fleetd-development-and-release-strategy.md)) - [ ] If the change applies to only one platform, confirmed that `runtime.GOOS` is used as needed to isolate changes - [ ] Verified that fleetd runs on macOS, Linux and Windows - [ ] Verified auto-update works from the released version of component to the new version (see [tools/tuf/test](../tools/tuf/test/README.md)) --- .../DisableAllowGameDVR.xml | 12 ----- .../PreventLockScreenSlideShow.xml | 13 ------ ...ction-in-defender smartscreen-disabled.xml | 12 ----- ...r-smartscreen-notify malicious-enabled.xml | 13 ------ ...rtscreen-notify-password reuse-enabled.xml | 13 ------ ...-smartscreen-notify-unsafe app-enabled.xml | 13 ------ ...sable diagnostic data - [CommercialId].xml | 13 ------ .../disable-toast-notifications-from-lock.xml | 12 ----- ...Approval Mode - [UseAdminApprovalMode].xml | 12 ----- ...onmanagement-msialwaysinstall-disabled.xml | 12 ----- .../windows-device-power-standbynetwork.xml | 23 ---------- ...device-system-bootstartdriver-disabled.xml | 12 ----- ...-device-systemservices-ftpsvc-disabled.xml | 11 ----- ...ystemservices-icssharedaccess-disabled.xml | 11 ----- ...-device-systemservices-icssvc-disabled.xml | 11 ----- ...mservices-routingremoteaccess-disabled.xml | 11 ----- ...ice-systemservices-rpclocator-disabled.xml | 11 ----- ...device-systemservices-ssdpsrv-disabled.xml | 11 ----- ...evice-systemservices-upnphost-disabled.xml | 11 ----- ...s-device-systemservices-w3svc-disabled.xml | 11 ----- ...-systemservices-wpmnetworksvc-disabled.xml | 11 ----- ...ws-device-systemservices-xbox-disabled.xml | 44 ------------------- ...dows-device-wirelessdisplay-requirepin.xml | 11 ----- ...onmanagement-msialwaysinstall-disabled.xml | 12 ----- 24 files changed, 326 deletions(-) delete mode 100644 docs/solutions/windows/configuration-profiles/DisableAllowGameDVR.xml delete mode 100644 docs/solutions/windows/configuration-profiles/PreventLockScreenSlideShow.xml delete mode 100644 docs/solutions/windows/configuration-profiles/automatic-data-collection-in-defender smartscreen-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/defender-smartscreen-notify malicious-enabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-password reuse-enabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-unsafe app-enabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/disable diagnostic data - [CommercialId].xml delete mode 100644 docs/solutions/windows/configuration-profiles/disable-toast-notifications-from-lock.xml delete mode 100644 docs/solutions/windows/configuration-profiles/enable built-in Admin Approval Mode - [UseAdminApprovalMode].xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-applicationmanagement-msialwaysinstall-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-power-standbynetwork.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-system-bootstartdriver-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-ftpsvc-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssharedaccess-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssvc-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-routingremoteaccess-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-rpclocator-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-ssdpsrv-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-upnphost-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-w3svc-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-wpmnetworksvc-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-systemservices-xbox-disabled.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-device-wirelessdisplay-requirepin.xml delete mode 100644 docs/solutions/windows/configuration-profiles/windows-user-applicationmanagement-msialwaysinstall-disabled.xml diff --git a/docs/solutions/windows/configuration-profiles/DisableAllowGameDVR.xml b/docs/solutions/windows/configuration-profiles/DisableAllowGameDVR.xml deleted file mode 100644 index 3ba0228fd4..0000000000 --- a/docs/solutions/windows/configuration-profiles/DisableAllowGameDVR.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - int - - - ./Device/Vendor/MSFT/Policy/Config/ApplicationManagement/AllowGameDVR - - 0 - - diff --git a/docs/solutions/windows/configuration-profiles/PreventLockScreenSlideShow.xml b/docs/solutions/windows/configuration-profiles/PreventLockScreenSlideShow.xml deleted file mode 100644 index a04acb490d..0000000000 --- a/docs/solutions/windows/configuration-profiles/PreventLockScreenSlideShow.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - chr - text/plain - - - ./Device/Vendor/MSFT/Policy/Config/DeviceLock/PreventLockScreenSlideShow - - <enabled/> - - diff --git a/docs/solutions/windows/configuration-profiles/automatic-data-collection-in-defender smartscreen-disabled.xml b/docs/solutions/windows/configuration-profiles/automatic-data-collection-in-defender smartscreen-disabled.xml deleted file mode 100644 index 3cd713413d..0000000000 --- a/docs/solutions/windows/configuration-profiles/automatic-data-collection-in-defender smartscreen-disabled.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - int - - - ./Device/Vendor/MSFT/Policy/Config/WebThreatDefense/AutomaticDataCollection - - 0 - - \ No newline at end of file diff --git a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify malicious-enabled.xml b/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify malicious-enabled.xml deleted file mode 100644 index 04ba5e1396..0000000000 --- a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify malicious-enabled.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - int - - - ./Device/Vendor/MSFT/Policy/Config/WebThreatDefense/NotifyMalicious - - 1 - - \ No newline at end of file diff --git a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-password reuse-enabled.xml b/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-password reuse-enabled.xml deleted file mode 100644 index 3e9db35895..0000000000 --- a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-password reuse-enabled.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - int - - - ./Device/Vendor/MSFT/Policy/Config/WebThreatDefense/NotifyPasswordReuse - - 1 - - \ No newline at end of file diff --git a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-unsafe app-enabled.xml b/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-unsafe app-enabled.xml deleted file mode 100644 index 06c926fadc..0000000000 --- a/docs/solutions/windows/configuration-profiles/defender-smartscreen-notify-unsafe app-enabled.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - int - - - ./Device/Vendor/MSFT/Policy/Config/WebThreatDefense/NotifyUnsafeApp - - 1 - - \ No newline at end of file diff --git a/docs/solutions/windows/configuration-profiles/disable diagnostic data - [CommercialId].xml b/docs/solutions/windows/configuration-profiles/disable diagnostic data - [CommercialId].xml deleted file mode 100644 index a8ecd205f4..0000000000 --- a/docs/solutions/windows/configuration-profiles/disable diagnostic data - [CommercialId].xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/ADMX_DataCollection/CommercialIdPolicy - - - chr - text/plain - - <Disabled/> - - - diff --git a/docs/solutions/windows/configuration-profiles/disable-toast-notifications-from-lock.xml b/docs/solutions/windows/configuration-profiles/disable-toast-notifications-from-lock.xml deleted file mode 100644 index 6bfcc6dff8..0000000000 --- a/docs/solutions/windows/configuration-profiles/disable-toast-notifications-from-lock.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/AboveLock/AllowToasts - - - int - text/plain - - 0 - - diff --git a/docs/solutions/windows/configuration-profiles/enable built-in Admin Approval Mode - [UseAdminApprovalMode].xml b/docs/solutions/windows/configuration-profiles/enable built-in Admin Approval Mode - [UseAdminApprovalMode].xml deleted file mode 100644 index 3da8deee23..0000000000 --- a/docs/solutions/windows/configuration-profiles/enable built-in Admin Approval Mode - [UseAdminApprovalMode].xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/LocalPoliciesSecurityOptions/UserAccountControl_UseAdminApprovalMode - - - int - - 1 - - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-applicationmanagement-msialwaysinstall-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-applicationmanagement-msialwaysinstall-disabled.xml deleted file mode 100644 index 36e1af3e9d..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-applicationmanagement-msialwaysinstall-disabled.xml +++ /dev/null @@ -1,12 +0,0 @@ - - 0199f196-3441-7177-b056-bcaf2aa2f063 - - - ./Device/Vendor/MSFT/Policy/Config/ApplicationManagement/MSIAlwaysInstallWithElevatedPrivileges - - - int - - 0 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-power-standbynetwork.xml b/docs/solutions/windows/configuration-profiles/windows-device-power-standbynetwork.xml deleted file mode 100644 index 2ca504f3a1..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-power-standbynetwork.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/ADMX_Power/DCConnectivityInStandby_2 - - - chr - - <enabled/> - - - - - - ./Device/Vendor/MSFT/Policy/Config/ADMX_Power/ACConnectivityInStandby_2 - - - chr - - <enabled/> - - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-system-bootstartdriver-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-system-bootstartdriver-disabled.xml deleted file mode 100644 index 8417075a82..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-system-bootstartdriver-disabled.xml +++ /dev/null @@ -1,12 +0,0 @@ - - 0199f1d1-56db-7c8c-b912-89b4883b21e4 - - - ./Device/Vendor/MSFT/Policy/Config/System/BootStartDriverInitialization - - - chr - - <disabled/> - - \ No newline at end of file diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ftpsvc-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ftpsvc-disabled.xml deleted file mode 100644 index dd4400790c..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ftpsvc-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureMicrosoftFTPServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssharedaccess-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssharedaccess-disabled.xml deleted file mode 100644 index 25b0af4f03..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssharedaccess-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureInternetConnectionSharingServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssvc-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssvc-disabled.xml deleted file mode 100644 index f128d3e279..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-icssvc-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureWindowsMobileHotspotServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-routingremoteaccess-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-routingremoteaccess-disabled.xml deleted file mode 100644 index 0423e4df70..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-routingremoteaccess-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureRoutingAndRemoteAccessServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-rpclocator-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-rpclocator-disabled.xml deleted file mode 100644 index 169b529760..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-rpclocator-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureRemoteProcedureCallLocatorServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ssdpsrv-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ssdpsrv-disabled.xml deleted file mode 100644 index 3a1c7e6b33..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-ssdpsrv-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureSSDPDiscoveryServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-upnphost-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-upnphost-disabled.xml deleted file mode 100644 index d479e5bc79..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-upnphost-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureUPnPDeviceHostServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-w3svc-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-w3svc-disabled.xml deleted file mode 100644 index 53acf49b53..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-w3svc-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureWorldWideWebPublishingServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-wpmnetworksvc-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-wpmnetworksvc-disabled.xml deleted file mode 100644 index 26267e42e1..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-wpmnetworksvc-disabled.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureWindowsMediaPlayerNetworkSharingServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-xbox-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-device-systemservices-xbox-disabled.xml deleted file mode 100644 index 2b71b991b2..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-systemservices-xbox-disabled.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureXboxAccessoryManagementServiceStartupMode - - - int - - 4 - - - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureXboxLiveAuthManagerServiceStartupMode - - - int - - 4 - - - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureXboxLiveGameSaveServiceStartupMode - - - int - - 4 - - - - - - ./Device/Vendor/MSFT/Policy/Config/SystemServices/ConfigureXboxLiveNetworkingServiceStartupMode - - - int - - 4 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-device-wirelessdisplay-requirepin.xml b/docs/solutions/windows/configuration-profiles/windows-device-wirelessdisplay-requirepin.xml deleted file mode 100644 index 0b88ab1e00..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-device-wirelessdisplay-requirepin.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - ./Device/Vendor/MSFT/Policy/Config/WirelessDisplay/RequirePinForPairing - - - int - - 2 - - diff --git a/docs/solutions/windows/configuration-profiles/windows-user-applicationmanagement-msialwaysinstall-disabled.xml b/docs/solutions/windows/configuration-profiles/windows-user-applicationmanagement-msialwaysinstall-disabled.xml deleted file mode 100644 index 5e57485dd4..0000000000 --- a/docs/solutions/windows/configuration-profiles/windows-user-applicationmanagement-msialwaysinstall-disabled.xml +++ /dev/null @@ -1,12 +0,0 @@ - - 0199f197-5907-7164-af5e-706787d9f942 - - - ./User/Vendor/MSFT/Policy/Config/ApplicationManagement/MSIAlwaysInstallWithElevatedPrivileges - - - int - - 0 - - \ No newline at end of file