Need some help with VBS pre-queue script

Come up with a useful post-processing script? Share it here!
Post Reply
ErikBrown
Release Testers
Release Testers
Posts: 118
Joined: December 20th, 2009, 1:25 am
Location: Home

Need some help with VBS pre-queue script

Post by ErikBrown »

Hi,

As a test I tried the below pre-queue VBS script. It works fine if I run it in a command window but when I configure it as the pre-queue script in SABnzbd (070B5 on Windows XP SP3) then it results in the following error:

Image

Line 16 points to the line : objStdOut.WriteLine "1"

The script is as follows:

dim NZBname
dim NZBcategory
dim NewNZBname
dim Args

args = WScript.Arguments.Count
If args < 3 then WScript.Quit

NZBname = WScript.Arguments.Item(0)
NZBcategory = WScript.Arguments.Item(2)
NewNZBname = NZBname

if NewNZBname <> "" then
Set objStdOut = WScript.StdOut
objStdOut.WriteLine "1"
objStdOut.WriteLine NewNZBname
objStdOut.close
end if

Any idea why this results in this error?

Erik
J03 8LACK
Full Member
Full Member
Posts: 120
Joined: April 2nd, 2009, 1:33 am

Re: Need some help with VBS pre-queue script

Post by J03 8LACK »

ErikBrown,

In Short,
change all your WScript.StdOut.WriteLine's to WScript.Echo.

or change line 15 from Set objStdOut = WScript.StdOut to Set objStdOut = WScript.Echo

Why? Check out here - http://www.tech-archive.net/Archive/Scr ... /0979.html

Just helping out
J03
Post Reply