Thank you again sander . So, I figured out that when there is something on queue, a dropdown menu appears on the line (beside the Category, Priority and Processing dropdown). ;D As I was testing with very small size downloads, I could even see that menu. Maybe it is interesting to document this on t...
Thank you sander . So, as suggested I put some trace log. @echo off set fullPath=%1 echo %date% - %time% - Before java call >> log.log java SabnzbdRenamer %fullPath% echo %date% - %time% - After java call >> log.log exit 0 Unfortunatelly, no log.log was created (it seems the script is not being call...
So, I've made a script to rename the folder downloaded. Here is renamer.cmd, located on the Post-Processing Scripts Folder. @echo off set fullPath=%1 java SabnzbdRenamer %fullPath% exit 0 On the folder, I have SabnzbdRenamer.class, which do the rename stuff. But, once a download is complete, nothing...