vote up 1 vote down star

I'd like to wrap a MyBatScript.bat script inside a MyTest.exe. Then I'd like to invoke MyTest.exe with arguments, thus:

MyTest.exe arg1 arg2

format of passing arguments can be different if need be.

I'd like arg1 and arg2 to be passed on to MyBatScript.bat as %1 and %2 and MyBatScript.bat executed.

How Can I do this?

Thanks!

flag
What language are you working in? – Robert Harvey Jun 28 at 17:33
This is an amazing requirement! Can we please know why you would want to do such a thing? – nik Jun 28 at 17:58
I can think of a few reasons. – Robert Harvey Jun 28 at 22:21

2 Answers

vote up 1 vote down

This depends entirely on which language you compile the .exe from. Here's an example using C#:

    static void Main(string[] args)
    {
        StringBuilder buildArgs = new StringBuilder();
        foreach(string arg in args)
        {
            buildArgs.Append(arg);
            buildArgs.Append(" ");
        }
        System.Diagnostics.Process.Start(@"C:\MyBatScript.bat", buildArgs.ToString());
    }

This would be the Main function of a ConsoleApplication.

link|flag
vote up 0 vote down

Executing a batch file from within your EXE is really just invoking the cmd.exe program with the batch file as a parameter. You could therefor pass any additional parameters this batch file accept along as well.

link|flag

Your Answer

Get an OpenID
or

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