From 50240ee0f35d4d09c6eb17a471a0d5f6f3c0d360 Mon Sep 17 00:00:00 2001 From: duffyduck Date: Fri, 3 Apr 2026 10:54:05 +0200 Subject: [PATCH] Change autostart to HKLM so it applies to all users Important for Terminal Server / multi-user environments where the setup is run once by an admin. Co-Authored-By: Claude Opus 4.6 (1M context) --- installer/setup.iss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/setup.iss b/installer/setup.iss index fe78d1dd..b181f10e 100644 --- a/installer/setup.iss +++ b/installer/setup.iss @@ -44,8 +44,8 @@ Name: "{group}\{#MyAppName} deinstallieren"; Filename: "{uninstallexe}" Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon [Registry] -; Autostart -Root: HKCU; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "StarfaceOutlookSync"; ValueData: """{app}\{#MyAppExeName}"""; Flags: uninsdeletevalue; Tasks: autostart +; Autostart fuer alle Benutzer (HKLM) +Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "StarfaceOutlookSync"; ValueData: """{app}\{#MyAppExeName}"""; Flags: uninsdeletevalue; Tasks: autostart [Run] Filename: "{app}\{#MyAppExeName}"; Description: "{#MyAppName} jetzt starten"; Flags: nowait postinstall skipifsilent