Skip to content

Commit c241a83

Browse files
fix(windows): register dd-procmgr-service as LocalSystem in Wix
Match process-agent and system-probe: the Wix service installer now uses LocalSystem instead of ddagentuser. ServiceCustomAction already sets LocalSystem at install time; this closes the initial-registration gap.
1 parent cd4bb31 commit c241a83

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/windows/DatadogAgentInstaller/WixSetup/Datadog Agent/AgentInstaller.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,8 +688,8 @@ private Dir CreateBinFolder()
688688
Constants.ProcmgrServiceName,
689689
"Datadog Process Manager",
690690
"Manage Datadog agent processes",
691-
"[DDAGENTUSER_PROCESSED_FQ_NAME]",
692-
"[DDAGENTUSER_PROCESSED_PASSWORD]");
691+
"LocalSystem",
692+
null);
693693
agentBinDir.AddFile(new WixSharp.File(_agentBinaries.ProcmgrService, procmgrService));
694694
agentBinDir.Add(new EventSource
695695
{

0 commit comments

Comments
 (0)