C# 使用cmd命令卸载WCF Windows 服务
C# 使用cmd命令卸载WCF Windows 服务
扫一扫加作者微信
C# Code:
private void button3_Click(object sender, EventArgs e)
{//删除服务
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";//要执行的程序名称
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;//可能接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
p.StartInfo.CreateNoWindow = true;//不显示程序窗口
p.Start();//启动程序
//向CMD窗口发送输入信息:
//p.StandardInput.WriteLine(@"path C:\Windows\Microsoft.NET\Framework\v3.5");
p.StandardInput.WriteLine(@"path C:\Windows\Microsoft.NET\Framework\v4.0.30319");
string file = GetServiceFile(txtServiceName.Text);
string cmd = @"InstallUtil /u " file;
p.StandardInput.WriteLine(cmd);
p.StandardInput.Close();
//获取CMD窗口的输出信息:
string sOutput = p.StandardOutput.ReadToEnd();
p.StandardOutput.Close();
textBox2.Text = sOutput;
}
//来源:C/S框架网(www.csframework.com) QQ:1980854898
private void button3_Click(object sender, EventArgs e)
{//删除服务
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "cmd.exe";//要执行的程序名称
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;//可能接受来自调用程序的输入信息
p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
p.StartInfo.CreateNoWindow = true;//不显示程序窗口
p.Start();//启动程序
//向CMD窗口发送输入信息:
//p.StandardInput.WriteLine(@"path C:\Windows\Microsoft.NET\Framework\v3.5");
p.StandardInput.WriteLine(@"path C:\Windows\Microsoft.NET\Framework\v4.0.30319");
string file = GetServiceFile(txtServiceName.Text);
string cmd = @"InstallUtil /u " file;
p.StandardInput.WriteLine(cmd);
p.StandardInput.Close();
//获取CMD窗口的输出信息:
string sOutput = p.StandardOutput.ReadToEnd();
p.StandardOutput.Close();
textBox2.Text = sOutput;
}
//来源:C/S框架网(www.csframework.com) QQ:1980854898
扫一扫加作者微信
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
NewDoc C/S框架网