C# 注冊DLL(使用cmd)


 

//cmd:"regsvr32 " + dllPath(注冊dll的語句)
//output:string.Empty(注冊后的反饋信息    )
private static void runCmd(string cmd, out string output)
{
string CmdPath = @"C:\Windows\System32\cmd.exe";
cmd = cmd.Trim().TrimEnd('&') + "&exit";//說明:不管命令是否成功均執行exit命令,否則當調用ReadToEnd()方法時,會處於假死狀態
using (Process p = new Process())
{
p.StartInfo.FileName = CmdPath;
p.StartInfo.UseShellExecute = false; //是否使用操作系統shell啟動
p.StartInfo.RedirectStandardInput = true; //接受來自調用程序的輸入信息
p.StartInfo.RedirectStandardOutput = true; //由調用程序獲取輸出信息
p.StartInfo.RedirectStandardError = true; //重定向標准錯誤輸出
p.StartInfo.CreateNoWindow = true; //不顯示程序窗口
p.Start();//啟動程序
//向cmd窗口寫入命令
p.StandardInput.WriteLine(cmd);
p.StandardInput.AutoFlush = true;
//獲取cmd窗口的輸出信息
output = p.StandardOutput.ReadToEnd();
p.WaitForExit();//等待程序執行完退出進程
p.Close();
}
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM