2
votes
1answer
524 views

WScript.Shell.run launching robocopy doesn't show destination parameters

i'm trying to get a vbscript (cscript/vbs) to copy files from one network location (my tv show downloads folder) to another network location (my pvr). i tried to use xcopy but ended up with "parse ...
5
votes
4answers
752 views

Debugging Javascript in Visual Studio (or other JS debugger)

I have a .js file that normally gets executed by cscript.exe (i.e. is not run in the browser and cannot be run there). I know, that I can feed cscript.exe the //X parameter in order to get asked for ...
0
votes
1answer
498 views

Windows Scripting can't find reference

I have a windows script file that doesn't work anymore. The script look like this <job> <reference object="Some.Component.1" /> <script language="VBScript"> x = ...
2
votes
1answer
496 views

how do you include an external script using javascript in windows script host cscript.exe

how do you include an external script using javascript in windows script host cscript.exe
2
votes
5answers
6k views

how can I read a binary file with in javascript (Cscript.exe)?

I think I can't read a binary file with the Scripting.FileSystemObject class. Can I do it with ADODB.Stream? Something else? I want to get an array of bytes. thanks.
1
vote
3answers
6k views

Script to download file and rename according to date on Windows Vista machine?

I need to daily run a script that will download a file from a fixed location and save it on my computer with an appropriate filename-YYYYMMDD-HHSS.ext timestamp. I need a historical record of what ...
3
votes
1answer
774 views

How can you get STDIN input to a WSH script using cscript.exe?

I'm trying to use WSH in place of DOS/Batch files. Thanks for the input!
3
votes
3answers
5k views

Is there a way to run a command line command from JScript (not javascript) in Windows Scripting Host (WSH) cscript.exe?

I'm writing a JScript program which is run in cscript.exe. Is it possible to run a commnad line command from within the script. It would really make the job easy, as I can run certain commands instead ...