How to close gracefully the transmission-daemon on Windows?
In Linux I send the SIGTERM command.
In Windows the equal command is
by process name:
taskkill /im transmission-daemon.exe
or by PID:
taskkill /pid <####>
Problem is that transmission-daemon.exe does not respond to the graceful taskkill.
Instead I must use the /f switch to force shutdown: taskkill /f /im transmission-daemon.exe
I would like if it can be possible to make transmission-daemon.exe respond to gracefully close without force. This way to allow it to stop torrents or save data/settings that might not be saved yet.
I would like to note that I don't run transmission-daemon.exe as a windows service. I run it as a normal process in the background for a certain number of reasons. Thank you for any help.
