-1
我發現automaticaly啓動WiFi熱點的批處理文件的程序,所以我需要在Visual Studio使程序運行該批處理文件如何創建運行批處理文件
Execute batch-file to start wifi hotspot as admin
我發現automaticaly啓動WiFi熱點的批處理文件的程序,所以我需要在Visual Studio使程序運行該批處理文件如何創建運行批處理文件
Execute batch-file to start wifi hotspot as admin
// Start the child process.
Process p = new Process();
// Redirect the output stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "YOURBATCHFILE.bat";
p.Start();
// Do not wait for the child process to exit before
// reading to the end of its redirected stream.
// p.WaitForExit();
// Read the output stream first and then wait.
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
代碼來自MSDN。
只需編寫包含這行代碼的程序:
System.Diagnostics.Process.Start("c:\\batchfilename.bat");
如果您belonings工作。
你真正的問題是什麼?你有什麼嘗試?你鏈接的答案有什麼問題?目前尚不清楚你實際要求的是什麼。 – EJoshuaS