I am firing up a cmd console from my .net app with some parameters, is there a parameter to specify that the cmd console is not visible?
---- Edit - Adding Code
I know this isn't the standard way of starting a process in .Net, but it is being run from a Silverlight Client.
Dynamic cmd = AutomationFactory.CreateObject("WScript.Shell");
cmd.Run("C:\Windows\System32\cmd.exe /c *myargs*")