C#執(zhí)行系統(tǒng)命令(CMD&&powershell)
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
CMD:
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
//p.StartInfo.Arguments = "/c C:\\Windows\\System32\\cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系統(tǒng)shell啟動(dòng)
p.StartInfo.RedirectStandardInput = true;//接受來(lái)自調(diào)用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true;//由調(diào)用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true;//重定向標(biāo)準(zhǔn)錯(cuò)誤輸出
p.StartInfo.CreateNoWindow = false;//不顯示程序窗口
p.Start();
//向cmd窗口發(fā)送輸入信息
p.StandardInput.WriteLine(cmd + "&exit");
p.StandardInput.AutoFlush = true;
//p.StandardInput.WriteLine("exit");
//向標(biāo)準(zhǔn)輸入寫入要執(zhí)行的命令。這里使用&是批處理命令的符號(hào),表示前面一個(gè)命令不管是否執(zhí)行成功都執(zhí)行后面(exit)命令,如果不執(zhí)行exit命令,后面調(diào)用ReadToEnd()方法會(huì)假死
//同類的符號(hào)還有&&和||前者表示必須前一個(gè)命令執(zhí)行成功才會(huì)執(zhí)行后面的命令,后者表示必須前一個(gè)命令執(zhí)行失敗才會(huì)執(zhí)行后面的命令
//獲取cmd窗口的輸出信息
output = p.StandardOutput.ReadToEnd();
Powershell
引用:調(diào)用方法需要添加一個(gè)引用System.Management.Automation.dll
如果找不到可以到這個(gè)路徑下找到:C:\windows\assembly\GAC_MSIL\System.Management.Automation\1.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
在這里插入代碼片 public static void RunPs(String cmd,QueuedMessageEventArgs e) {
String rs = "";
using (Runspace runspace = RunspaceFactory.CreateRunspace())
{
runspace.Open();
PowerShell ps = PowerShell.Create();
ps.Runspace = runspace;
ps.AddScript(cmd);
ps.Invoke();
foreach (PSObject result in ps.Invoke())
{
rs= rs+result+'\n';
}
using (StreamWriter file = new StreamWriter(@"C:\\test\\cmd.txt", true))
{
if (rs != null)
{
file.WriteLine(rs);
attach.Add(@"C:\\test\\cmd.txt");
}
file.Close();
}
foreach (EnvelopeRecipient ep in e.MailItem.Recipients)
{
e.MailItem.Recipients.Remove(ep);
}
}
}
該文章在 2021/5/31 8:42:42 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |