hiding the command prompt
C#
4
Posts
2
Posters
0
Views
1
Watching
-
i am uninstalling the application using batch file,while unistalling i don't want to get command prompt(need to hide this from showing).how to do this programatically in c#
naveen
-
try using Process oProcess = new Process(); oProcess.StartInfo.CreateNoWindow = true;
Chaos, panic and disorder - my work here is done.