avipcool Posted October 10, 2012 Report Share Posted October 10, 2012 How to send email automatically after download completed? Link to comment Share on other sites More sharing options...
ciaobaby Posted October 10, 2012 Report Share Posted October 10, 2012 Write a Windows Scripting Host (WSH) .vbs script to send a message and run that when the download comletes Link to comment Share on other sites More sharing options...
avipcool Posted October 10, 2012 Author Report Share Posted October 10, 2012 That's not a solution Link to comment Share on other sites More sharing options...
Beasly Posted October 10, 2012 Report Share Posted October 10, 2012 Here's more info on Windows Scripting Host=http://en.wikipedia.org/wiki/Windows_Script_HostYou create the script and add it in utorrent= Options>Preferences>Advanced>Run Progam Link to comment Share on other sites More sharing options...
ciaobaby Posted October 10, 2012 Report Share Posted October 10, 2012 That's not a solutionWell in that case;It can't be done at all!!! Link to comment Share on other sites More sharing options...
PatrickR65 Posted October 11, 2012 Report Share Posted October 11, 2012 I have a verry simple script that announces when a download is ready or starts to download, you can easely change the script,, and add a mailing function to it, '===============================================================' Label every download in rss feed ' ' Add this line to both fields in µTorrent: ' C:\speak.vbs "%S" "%L" "%P" ' ' When a download starts or finish, the script will announce the name of the label ' and/or that the download is starting or is finished '===============================================================Set vo = CreateObject("SAPI.SpVoice")on error resume nextdim statusstatus = wscript.arguments(0)dim labellabel = wscript.arguments(1)dim previous_stateprevious_state = wscript.arguments(2) if status = 6 and previous_state = 12 then vo.speak label +" " + "is starting to download!" end if if status = 5 and previous_state = 6 then vo.speak label +" " + "has finished with download!" end if Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.