Open
Description
ref: #7773
Autoupdate(nsis) process killing all apliccations with same name.
Expected is kill only process from installed folder.
Example:
app1: /folder1/app.exe
app2: /folder2/app.exe
Both running, NSIS installing/updating app1, but app2 is killed too.
- Electron-Builder Version: 26.0.12
- Node Version: 22.14.0
- Electron Version: 35.1.2
- Electron Type (current, beta, nightly): current
- Target: win
Solution:
Print all processes from actual directory:
powershell -Command "Get-Process | ?{$_.Path -and $_.Path.StartsWith($(Get-Location).Path)}"
And kill them:
powershell -Command "Get-Process | ?{$_.Path -and $_.Path.StartsWith($(Get-Location).Path)} | Stop-Process -Force"
Metadata
Metadata
Assignees
Labels
No labels