作業系統軟體版本擷取方法

來源:互聯網
上載者:User

我是一個C#的初學者,這是我參考一些資料,自己弄的一個通過訪問當前作業系統的註冊表來擷取當前作業系統相關資訊的小程式,僅供參考。

1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Text;
7using System.Windows.Forms;
8using Microsoft.Win32;
9
10namespace Reg4U
11{
12 public partial class Form1 : Form
13 {
14 public Form1()
15 {
16 InitializeComponent();
17 }
18
19 private void button1_Click(object sender, EventArgs e)
20 {
21 RegistryKey rk;
22 rk = Registry.LocalMachine.OpenSubKey("SoftwareMicrosoftWindows NTCurrentVersion");
23 string s= "當前作業系統版本:" rk.GetValue("ProdUCtName").ToString();
24 s = s "rn" rk.GetValue("CSDVersion").ToString() ;
25 s = s "rn當前作業系統安裝序號:rn" rk.GetValue("ProductId").ToString();
26 s = s "rn當前系統版本號碼:" rk.GetValue("CurrentBuildNumber").ToString();
27 rk.Close();
28 textBox1.Text = textBox1.Text "rn" s;
29 }
30
31 private void Form1_Load(object sender, EventArgs e)
32 {
33 RegistryKey rk;
34 rk = Registry.LocalMachine.OpenSubKey("SoftwareMicrosoftWindows NTCurrentVersion");
35 string s = rk.GetValue("ProductName").ToString();
36 if (System.Text.RegularEXPressions.Regex.IsMatch(s, "windows 2000"))
37 {
38 textBox1.Text = "您的作業系統是2K,恭喜您,你的當前系統適合本軟體的使用!";
39 }
40 rk.Close();
41 }
42 }
43}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.