C#獲取Windows版本號
當前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
C#獲取Windows版本號,程序沒有其它功能,僅此而已,如果需要在你程序的其它地方顯示W(wǎng)indows系統(tǒng)的版本信息,則可借鑒這個實例中的代碼。
//獲取操作系統(tǒng)的版本信息 Process MyProcess= new Process(); //設(shè)定程序名 MyProcess.StartInfo.FileName = "cmd.exe"; //關(guān)閉Shell的使用 MyProcess.StartInfo.UseShellExecute = false; //重定向標準輸入 MyProcess.StartInfo.RedirectStandardInput = true; //重定向標準輸出 MyProcess.StartInfo.RedirectStandardOutput = true; //重定向錯誤輸出 MyProcess.StartInfo.RedirectStandardError = true; //設(shè)置不顯示窗口 MyProcess.StartInfo.CreateNoWindow = true; //執(zhí)行VER命令 MyProcess.Start(); MyProcess.StandardInput.WriteLine("Ver"); MyProcess.StandardInput.WriteLine("exit"); //從輸出流獲取命令執(zhí)行結(jié)果, string StrInfo= MyProcess.StandardOutput.ReadToEnd(); this.textBox1.Text=StrInfo.Substring(0,StrInfo.IndexOf("Corp.")+5); 該文章在 2021/2/4 18:23:03 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |