Just found this web page
FTP via ASP without using 3rd-party components
Just some copy and paste without looking up the syntax
 Code:
BREAK ON
$objShell = CreateObject("WSCRIPT.SHELL")
$Catch = $objShell.Run('%comspec% /c "ftp -i -n -v -s:C:\test\FTPInput.txt" > nul',0,-1)

Now launch this with
start wkix32 ftptest.kix
As far as I can see, the script is running silent now.
[Edit]
Here is some more information about the Run method of WScript.Shell
Windows Script Host Run Method (Windows Script Host)
I think you need at least the .NET FrameWork 2.0
[/Edit]


Edited by Witto (2007-08-16 05:40 PM)
Edit Reason: Added link to syntax for wshscript.run