vote up 1 vote down star

Is it possible to call a vbscript from a ruby script? Bascially, I am creating a temp folder with a random name in my ruby script and I would like to call the vbscript and pass the name of this folder to carry out the next action.

flag

60% accept rate

2 Answers

vote up 3 vote down check

Try calling the Windows Scripting Host (cscript) with your script:

 system "cscript //nologo script.vbs #{random_filename}"
link|flag
vote up 0 vote down

Use system and pass it as a command-line arg

system "script.vbs #{random_filename}"
link|flag
Thanks...I tried it but does not work. Any idea why it would not work? – andHapp Feb 22 at 1:24
These two commands work but the call to vbscript does not work . I even tried using a vbscript name that does not exist hoping it would throw and error but it seems the calls to vbs are ignored. system "echo Hello" system "dir" – andHapp Feb 22 at 1:28
As stated below you need to probably pass it to the Windows Scripting Host. so add cscript to the above. – mletterle Feb 22 at 1:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.