vote up 0 vote down star

I need to call the vb script file(vbs file) in my C# windows application. Please let me know how to do this. There is an add in to access vb script file in Visual studio. But i need to access the script in code behind how to do this

flag

70% accept rate
this is not meaningful answer. – balaweblog Oct 14 '08 at 9:07
Removed and tag. – Brad Gilbert Oct 16 '08 at 23:47

4 Answers

vote up 9 vote down check

the following code will execute a VBScript with no prompts or errors and no shell logo

System.Diagnostics.Process.Start(@"cscript //B //Nologo c:\scripts\vbscript.vbs");

A more complex technique would be to use

Process scriptProc = new Process();
scriptProc.StartInfo.FileName = @"cscript"; 
scriptProc.StartInfo.Arguments ="//B //Nologo c:\scripts\vbscript.vbs";
scriptProc.Start();
scriptProc.WaitForExit();
scriptProc.Close();

Using the StartInfo properties will give you quite granular access to the process settings.

You need to use WScript if you want windows etc to be displayed by the script program. You could also try just executing cscript directly but on some systems it will just launch the editor :)

link|flag
vote up 0 vote down

You mean you try to run a vbs file from C#?

It can be done like running any other program from C# code:

Process.Start(path);

But you have to make sure that it won't ask for anything, and it is running with the command line version of the interpreter:

Process.Start("cscript path\\to\\script.vbs");
link|flag
vote up 0 vote down

Are you developing an ASP.NET web application for Internet Explorer only and want to execute VBScript on the client or would you like to execute it on the server...?

On the client I think you need to work with ClientScript.RegisterStartupScript method. On the server I'd (carefully) do it als Ilya described in his answer.

link|flag
vote up 0 vote down

How would you get back results from the VBS?

link|flag
Don't post questions as answers to other questsions. Use the Ask Questsion button in the top right to post new questsions. – Helen Sep 5 at 9:16

Your Answer

Get an OpenID
or

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