I'm attempting to create a Windows service which will essentially allow me to start torrent downloads on my home PC remotely. It will check my email account reguarly for an email with a certain subject and download the torrents whose URLs I've embedded in the email body.
For the downloading part, I've decided to programmatically call windows' cmd.exe (the command prompt) and execute BitComet.exe with certain parameters. Here is the actual call I'm making:
When this is executed, it successfully downloads the torrent file, but not the contents. It then opens a prompt to "Create a new BitTorrent task" which is simply a prompt to select the files in the torrent to download and begin the download. It appears that I can download the contents (after downloading the *.torrent file) by subsequently calling the following command:
Is there a single command to automatically download the contents of the torrent via the command line?
Thanks in advance.
For the downloading part, I've decided to programmatically call windows' cmd.exe (the command prompt) and execute BitComet.exe with certain parameters. Here is the actual call I'm making:
bitcomet --url=NAME.torrent --silent --tray
When this is executed, it successfully downloads the torrent file, but not the contents. It then opens a prompt to "Create a new BitTorrent task" which is simply a prompt to select the files in the torrent to download and begin the download. It appears that I can download the contents (after downloading the *.torrent file) by subsequently calling the following command:
bitcomet C:\NAME.torrent --silent --tray
Is there a single command to automatically download the contents of the torrent via the command line?
Thanks in advance.