using (Process p = new Process())
{
p.StartInfo.WorkingDirectory = "C:\\wamp";
p.StartInfo.UseShellExecute = true;
p.StartInfo.RedirectStandardOutput = false;
p.StartInfo.FileName = "C:\\wamp\\unins000.exe";
p.StartInfo.Arguments = "/VERYSILENT /SUPPRESSMSGBOXES /NORESTART";
p.StartInfo.CreateNoWindow = false;
p.Start();
p.EnableRaisingEvents = true;
p.WaitForExit();
}
Hiç yorum yok:
Yorum Gönder