From 7e6245ffac8b3f58e61ade3560fbfef76c438957 Mon Sep 17 00:00:00 2001 From: Wojtek Mach Date: Tue, 6 Aug 2024 15:03:10 +0200 Subject: [PATCH] Stop epmd.exe from previous installation if any (#2734) --- rel/app/windows/Installer.nsi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rel/app/windows/Installer.nsi b/rel/app/windows/Installer.nsi index 39e4674cd..61e8a38d7 100644 --- a/rel/app/windows/Installer.nsi +++ b/rel/app/windows/Installer.nsi @@ -42,6 +42,9 @@ Section "Install" ${EndIf} Delete "$INSTDIR\vc_redist.x64.exe" + DetailPrint "Stopping epmd.exe from previous installation, if any" + ExecWait "taskkill /f /t /im epmd.exe" + File /a /r "bin\Livebook-Release\" CreateDirectory "$LOCALAPPDATA\Livebook\Logs"