I have created a Process to run command in CMD.
var process = Process.Start(\"CMD.exe\", \"/c apktool d app.apk\"); process.WaitForExit();
How
Try this :
proc.StartInfo.CreateNoWindow = true; proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; proc.WaitForExit();