-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NSIS uninstaller doesn't kill child processes #2516
NSIS uninstaller doesn't kill child processes #2516
Comments
Nice catch, thanks a lot. |
Since Electron in any case requires Windows 7, |
Thank you for the quick response! |
@develar @jkawamoto hi,This change brought a new bug. It happens when autoupdate ;“taskkill /f /t “ ,This will kill the installation process,Because the installation process is the main application of the child processes. As shown: pid-2028 is a child processes of pid-3044,pid-2028 is installation process,pid-3044 is main application |
@develar hi,I tested it 20.4.0,It still does not working. if change 'taskkill /f /t /im' to 'taskkill /f /im',it will working. |
Without I wonder why the installation process is still a child process of the main process even if it was spawned with |
@jkawamoto @develar As shown: |
Hi @develar , Caveat:
this led to the error message
a few days ago (while having worked fine for close to 2 years). Gladly let me know if there is any other info I could provide to shed some light on this. |
nsProcess Is not bundled now. Thanks for code snippet— it seems you use more longer timeouts. |
@consense "Close" here means that on kill process windows will be closed. I think, it helps app to exit gracefully. But in our case I think proper solution will be still not use nsProcess plugin, but instead try to ask process to exit gracefully. possible fix:
|
tree kill is not used now — now app is killed softly at first and it should be enough to terminate child process. |
It seems like the installer doesn't kill grandchildren processes. Is this an expected behavior? |
@develar so here is our problem: We spawn LBRY.exe which spawns child process for our daemon, which is lbrynet-daemon.exe . When lbrynet-daemon.exe is spawned, it creates a shell and spawns the actual lbrynet-daemon.exe, which is now a child of the child (or grandchild if you will). When we run the upgrade (or the installer when the app is running), it kills LBRY.exe and the shell lbrynet-daemon.exe, which leaves the grandchild process running. We are still unsure if the current behavior of killing the shell process not killing the child is correct (need to do more research). Can you share your thoughts on this? I believe this would be fixed by running taskkill /t, but you've stated before that this might kill the installer itself? Is this still the case? In #2516 (comment) you alluded to waiting 2 seconds and then killing with /t - don't think this would help us as LBRY.exe would already be killed, but I'm not 100% sure. We'd be willing to tip if the builder can support our scenario somehow. |
Did a little more digging and this only happens when running the installation manually while our app is running. It seems like the child processes and grandchild processes are killed during an in app upgrade, but we did notice that we get 2 UAC alerts to run the updated installer, once with a --updated --force-run parameter and then a second time with --updated /S . When the 2nd UAC prompt comes up, the first is already installing, so if you wait and then proceed when the app is starting/started, it kills it again and then doesn't restart and leaves a child lbrynet-daemon.exe process running. Can the task killing process (from in-app upgrade process) be replicated when running the installer manually and choosing the "LBRY is running, click OK to close it" option? We'll try to dig into this behavior a bit more also. |
As @IDrinkMoreWater explained at #2516 (comment) the current approach is problematic. The /t switch kills the whole tree, even if the /fi switch is supplied, resulting in the installer being killed. This should also be related to #4891 |
NSIS uninstaller checks the app is still running and kills it by nsProcess::KillProcess before deleting the installed files. However, nsProcess::KillProcess seems neither emitting any window-alll-closed and quit events, nor kills child (and grand child) processes. Hence, child processes spawned by the app keep running and block files are deleted.
Using
taskkill
instead of nsProcess::KillProcess might solve this problem.I found some related discussions:
The text was updated successfully, but these errors were encountered: