How to hide the console from within this code? Currently the cmd console is shown everytime I run this code.

protected override void OnStart(string[] args)
{            
    String applicationName = "cmd.exe";
    // launch the application
    ApplicationLoader.PROCESS_INFORMATION procInfo;
    ApplicationLoader.StartProcessAndBypassUAC(applicationName, out procInfo);

}

How can I execute a *.bat file from here? Can I simply can substitute the "cmd.exe" with "xxx.bat"?

link|improve this question

isn't the code only opening a cmd? – Enki Jul 27 '11 at 9:27
1  
so how is asking here easier than trying it? – Petar Ivanov Jul 27 '11 at 9:28
yes. but i will change the 'cmd.exe' to my own 'app.exe'.. – karikari Jul 27 '11 at 9:32
feedback

2 Answers

up vote 3 down vote accepted

In the hidden code at the ApplicationLoader.StartProcessAndBypassUAC method

process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

Or start it in this way:

Process cmd = new Process();
cmd.StartInfo = "cmd.exe";
cmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
cmd.StartInfo.Arguments = "Your arguments";
cmd.Start();
link|improve this answer
which variable is cmd? i tried but cant compile :( – karikari Jul 27 '11 at 9:36
1  
the variable cmd is a process variable that we created Process cmd = new Process. try to add using System.Diagnostics to your solution. note also that you have to change "Your arguments" to the arguments that you want to pass to that process – Jalal Aldeen Saa'd Jul 27 '11 at 9:39
but I need to use the StartProcessAndBypassUAC function. how? – karikari Jul 27 '11 at 10:06
I don't own that function, and the function code is hidden from me! however you should check the properties of the ApplicationLoader.PROCESS_INFORMATION since your StartProcessAndBypassUAC method returning it "out procInfo". – Jalal Aldeen Saa'd Jul 27 '11 at 10:14
feedback

Try it with the Process Class instead of the ApplicationLoader (I´ve never heard of that class, is it a custom class?)

Code Example:

 using System.Diagnostics;

 Process pr = new Process();
 pr.StartInfo.FileName = "cmd.exe";
 pr.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
 pr.Arguments = "xxx.bat";
 pr.Start();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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