Skip to content

Commit 2bc4458

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 83276c7 commit 2bc4458

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
@@ -692,8 +692,8 @@ private Dir CreateBinFolder()
692692
Constants.ProcmgrServiceName,
693693
"Datadog Process Manager",
694694
"Manage Datadog agent processes",
695-
"[DDAGENTUSER_PROCESSED_FQ_NAME]",
696-
"[DDAGENTUSER_PROCESSED_PASSWORD]");
695+
"LocalSystem",
696+
null);
697697
agentBinDir.AddFile(new WixSharp.File(_agentBinaries.ProcmgrService, procmgrService));
698698
agentBinDir.Add(new EventSource
699699
{

0 commit comments

Comments
 (0)