From ae5c16a8e0a254e68bb49048208b37192ecb8fb7 Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Sun, 4 Aug 2024 17:31:55 -0400 Subject: [PATCH] Remove delay from service start --- nsis/jellyfin.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsis/jellyfin.nsi b/nsis/jellyfin.nsi index 943e2a1..88c6a6a 100644 --- a/nsis/jellyfin.nsi +++ b/nsis/jellyfin.nsi @@ -221,7 +221,7 @@ ${If} $_INSTALLSERVICE_ == "Yes" ; Only run this if we're going to install the s Sleep 3000 ; Give time for Windows to catchup ConfigureStartRetry: - ExecWait '"$INSTDIR\nssm.exe" set JellyfinServer Start SERVICE_DELAYED_AUTO_START' $0 + ExecWait '"$INSTDIR\nssm.exe" set JellyfinServer Start SERVICE_AUTO_START' $0 ${If} $0 <> 0 !insertmacro ShowError "Could not configure the Jellyfin Server service." ConfigureStartRetry ${EndIf}