C#執行系統命令(CMD&&powershell)
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
CMD:
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
//p.StartInfo.Arguments = "/c C:\\Windows\\System32\\cmd.exe";
p.StartInfo.UseShellExecute = false; //是否使用操作系統shell啟動
p.StartInfo.RedirectStandardInput = true;//接受來自調用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true;//由調用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true;//重定向標準錯誤輸出
p.StartInfo.CreateNoWindow = false;//不顯示程序窗口
p.Start();
//向cmd窗口發送輸入信息
p.StandardInput.WriteLine(cmd + "&exit");
p.StandardInput.AutoFlush = true;
//p.StandardInput.WriteLine("exit");
//向標準輸入寫入要執行的命令。這里使用&是批處理命令的符號,表示前面一個命令不管是否執行成功都執行后面(exit)命令,如果不執行exit命令,后面調用ReadToEnd()方法會假死
//同類的符號還有&&和||前者表示必須前一個命令執行成功才會執行后面的命令,后者表示必須前一個命令執行失敗才會執行后面的命令
//獲取cmd窗口的輸出信息
output = p.StandardOutput.ReadToEnd();
Powershell
引用:調用方法需要添加一個引用System.Management.Automation.dll
如果找不到可以到這個路徑下找到: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 編輯過 |
關鍵字查詢
相關文章
正在查詢... |