Search found 4 matches

by rdaraujo
October 16th, 2011, 5:12 pm
Forum: Post-Processing Scripts
Topic: [Windows] Can't get post-script to run
Replies: 6
Views: 4356

Re: [Windows] Can't get post-script to run

Yeah, that's right ;D
As I don't use any categories, in that page you can define a script to be default for all one.

Thank you so much sander, you really guide me to setup this correctly.
by rdaraujo
October 16th, 2011, 4:38 pm
Forum: Post-Processing Scripts
Topic: [Windows] Can't get post-script to run
Replies: 6
Views: 4356

Re: [Windows] Can't get post-script to run

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...
by rdaraujo
October 16th, 2011, 4:00 pm
Forum: Post-Processing Scripts
Topic: [Windows] Can't get post-script to run
Replies: 6
Views: 4356

Re: [Windows] Can't get post-script to run

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...
by rdaraujo
October 16th, 2011, 3:14 pm
Forum: Post-Processing Scripts
Topic: [Windows] Can't get post-script to run
Replies: 6
Views: 4356

[Windows] Can't get post-script to run

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...