Hiding command prompt while running an .bat file?
-
Hi, i want to hide cmd prompt while executing or running an .bat file.. i have an exe inside my .bat file.. Simply want to run .exe without showing the command prompt through bat file.. Regards, Pawan
-
Hi, i want to hide cmd prompt while executing or running an .bat file.. i have an exe inside my .bat file.. Simply want to run .exe without showing the command prompt through bat file.. Regards, Pawan
-
Hi, i want to hide cmd prompt while executing or running an .bat file.. i have an exe inside my .bat file.. Simply want to run .exe without showing the command prompt through bat file.. Regards, Pawan
-
Hi I applied @echo off, but still it is not solved the issue.
-
Hi, StreamWriter sw = new StreamWriter(@"Z:\" + txtName.Text + ".bat"); sw.WriteLine("START /d E:\\Stock\\StockView\\bin\\Debug Stock.exe % "+result); sw.Close(); This is what i created through C# code.. I don't know what i need to include before or after "START" of sw.WriteLine to hide the cmd prompt.. That's y i posted it in C#.