Search found 3 matches

by dayz99
Mon Feb 26, 2018 12:21 pm
Forum: Windows Support
Topic: Graceful shutdown (Windows daemon)
Replies: 4
Views: 7113

Re: Graceful shutdown (Windows daemon)

ctrl+c event works. I will use option #2 to make my own program to do it. But for now just made a simple launcher to run in the foreground and hide the window so it is like daemonized. I can bring back the window to ctrl+c when I need to close. Thanks. :D
by dayz99
Sun Feb 25, 2018 4:38 pm
Forum: Windows Support
Topic: Graceful shutdown (Windows daemon)
Replies: 4
Views: 7113

Re: Graceful shutdown (Windows daemon)

Hi,

In this system I am running with Windows 7

Downloaded Transmission from this link exactly:
https://github.com/transmission/transmission/releases/download/2.92/transmission-2.92-x86.msi
MD5: e10105ca6e06d4f73668c212af60b39c
SHA1: 8577712d7cd6ddc6cffc9e44e47c705c85945593

I installed the setup ...
by dayz99
Sun Feb 25, 2018 5:52 am
Forum: Windows Support
Topic: Graceful shutdown (Windows daemon)
Replies: 4
Views: 7113

Graceful shutdown (Windows daemon)

Hi,

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 ...