From a43b189167ccbb540fdec5ef401f99a6ae61cdea Mon Sep 17 00:00:00 2001 From: Noah Talerman <47070608+noahtalerman@users.noreply.github.com> Date: Thu, 25 Jul 2024 09:40:50 -0400 Subject: [PATCH] Update "Config-less fleetd agent deployment" article Document new options for Windows fleetd added in the following user stories: - #19219 - #17528 --- articles/config-less-fleetd-agent-deployment.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/articles/config-less-fleetd-agent-deployment.md b/articles/config-less-fleetd-agent-deployment.md index 6b4258d75146..eb37159fdcf5 100644 --- a/articles/config-less-fleetd-agent-deployment.md +++ b/articles/config-less-fleetd-agent-deployment.md @@ -72,6 +72,14 @@ fleetctl package --type=pkg --use-system-configuration --fleet-desktop msiexec /i fleetd-base.msi FLEET_URL="" FLEET_SECRET="" ``` +Also, you can optionally pass `ENABLE_SCRIPTS`, `END_USER_EMAIL`, and `FLEET_DESKTOP` to the installer. + +For example, this command would install fleetd with script execution enabled, custom human-device mapping set, and Fleet Desktop enabled: + +```xml +msiexec /i fleetd-base.msi ENABLE_SCRIPTS=true END_USER_EMAIL="user@example.com" FLEET_DESKTOP=true FLEET_URL="" FLEET_SECRET="" +``` + These steps are a flexible alternative to deploying Fleet's agent across macOS and Windows platforms. This method, focused on separating the configuration from the `fleetd` package, empowers you with more control and simplifies the management of your device enrollments. This approach complements the original packaging method, allowing you to choose the best fit for your organization’s needs. Whether you prioritize streamlined package generation or prefer granular control over configuration distribution, these methods foster an open, flexible environment for deploying Fleet.