From 15e6596285c4d160859790de89b3342b995e0833 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Fri, 21 Nov 2025 11:01:10 +0900 Subject: [PATCH] Fix EXE_PATH case in service scripts Updated the EXE_PATH variable in both installService.bat and uninstallService.bat to use 'welsonjs' instead of 'WelsonJS' for consistency and to avoid potential path issues. --- installService.bat | 2 +- uninstallService.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installService.bat b/installService.bat index c491708..0ac8efc 100644 --- a/installService.bat +++ b/installService.bat @@ -7,7 +7,7 @@ REM Set the service name set SERVICE_NAME=WelsonJS.Service REM Set the paths -set EXE_PATH=%APPDATA%\WelsonJS\bin\WelsonJS.Service.exe +set EXE_PATH=%APPDATA%\welsonjs\bin\WelsonJS.Service.exe set INSTALL_UTIL_PATH=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe REM Uninstall the service diff --git a/uninstallService.bat b/uninstallService.bat index 9b36ae1..bb35442 100644 --- a/uninstallService.bat +++ b/uninstallService.bat @@ -7,7 +7,7 @@ REM Set the service name set SERVICE_NAME=WelsonJS.Service REM Set the paths -set EXE_PATH=%APPDATA%\WelsonJS\bin\WelsonJS.Service.exe +set EXE_PATH=%APPDATA%\welsonjs\bin\WelsonJS.Service.exe set INSTALL_UTIL_PATH=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe REM Uninstall the service