On a GUI environment at least, this is the sort of simple yet repetitive task AutoHotKey is meant to deal with. The logic should be simple enough.
The idea is dragging all your .torrent files to the mod, waiting for the dialogs to open, then running the script and letting it work on your behalf. You may have to increase the timings depending on your processing power and the amount of files in your torrents. Unfortunately this won't work on Web UI, console or remote desktop scenarios.Code:Main
Find all open windows where Window Title matches regexp "/Open Torrent Options \[.*\]/"
If there aren't any, End
Else, Focus the first one
Click button "Select All"
Sleep 1000 ms
Click button "Unmark"
Sleep 1000 ms
Click button "OK"
Sleep 1000 ms
Go To Main