This is kinda off topic but the tittle of the topic got me thinking...would it be cool if the base could look if the .torrent extension in the registry what program is associated and automatically launched the torrent client with the cmdline to add the .torrent file and begin dl?
Example it would see if .torrent extension is installed and what is used to open it here in the registry
[HKEY_CLASSES_ROOT\.torrent\OpenWithProgids]
"uTorrent"=""
It sees its installed and uTorrent is the program, so it looks in the registry for uTorrent key for the cmdline
[HKEY_CLASSES_ROOT\uTorrent\shell\open\command]
@="\"C:\\Program Files (x86)\\uTorrent\\uTorrent.exe\" \"%1\""
Then the BASE downloads the <dp>.torrent and opens utorrent with a path to the .torrent file
"%ProgramFiles(x86)%\uTorrent\uTorrent.exe" "<path_to_file>\<dp_torrent>.torrent"
uTorrent launches and the dp.torrent is added (and wouldn't it be gr8 if there were switches to add a save path that would save it in the \DriverPacks folder )
Edit: aparently there IS a way to specify a save path http://forum.utorrent.com/viewtopic.php?id=53988
"%ProgramFiles(x86)%\uTorrent\uTorrent.exe" /DIRECTORY "<path_to_folder>\DriverPacks" "<path_to_file>\<dp_torrent>.torrent"
But it may not be practical, may differ for every torrent client out there