I would like to a batch file that runs when a file completes - "Run the program when a torrent finishes:" in uTorrent to extract any compressed files that are marked by a specific label in uTorrent into a specified folder, but I am useless at Batch files.

Example -

If the label is "This Label" look for a RAR or ZIP file, if exists, extract to "C:\This Folder". If there is no Compressed files. Do nothing.
& If the label is "That Label" look for a RAR or ZIP file, if it exists extract to "C:\That Folder". If there is no Compressed files. Do nothing.

At the moment, I'm using
Code:
"c:\program files\winrar\winrar.exe" x -ibck "%D*.r*" "%D"


All this does though, is extract the files after completion. It looks in there, extracts the files to the same folder and if it finds nothing to extract, it throws and error saying so.
Annoying when your downloads are automated and you come back to find loads of errors to clear on the screen.

Is anyone able to assist?