分享
 
 
 

C#编写的用光盘做启动盘全程描述

王朝c#·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

C#编写的用光盘做启动盘全程描述

作者:thinkersky (Email: yanghuangming@rongji.com)

一 :编程思想

1、创建启动盘

插入要创建的启动盘,程序自动检测光驱中光盘,利用WMI(Windows管理架构:Windows Management Instrumentation)读取该光盘的序列号(具有唯一性),把该序列号写入注册表。

2、验证

程序执行时,自动检测光驱中的光盘,利用WMI获取序列号,然后读取注册表中先前写入的序列号,二者比较,相同则程序启动成功,否则提示插入启动盘。

二 :相关知识

1、 什么是WMI?

WMI(Windows管理架构:Windows Management Instrumentation)是Microsoft基于Web的企业管理(WBEM)和 Desktop Management Task Force(DMTF)工业标准的实现. 就是一种基于标准的系统管理的开发接口,这组接口用来控制管理计算机. 它提供了一种简单的方法来管理和控制系统资源.如果你想深入了解他,可以参考Micorosft Platform SDK . 在这我们只是通过它实现一个简单的功能, 得到我们系统中光盘的相关信息.[ 我们需要使用System.Management名字空间下提供的类来实现.]。

2、 如何在C#中操作注册表

使用VC,VB等语言操作注册表的例子已经有很多了,其实在C#里操作注册表更加的简单方便。下面的例子就提供了在C#里操作注册表的方法:

using Microsoft.Win32;

using System.Diagnostics;

private void Access_Registry()

{

// 在HKEY_LOCAL_MACHINE\Software下建立一新键,起名为CDDriveSn

RegistryKey key = Registry.LocalMachine.OpenSubKey("Software", true);

// 增加一个子键

RegistryKey newkey = key.CreateSubKey("CDDriveSn");

// 设置此子键的值

newkey.SetValue("CDDriveSn", "123456789");

// 从注册表的其他地方获取数据

// 找出你的CPU

RegistryKey pRegKey = Registry.LocalMachine;

pRegKey= pRegKey.OpenSubKey("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0");

Object val = pRegKey.GetValue("VendorIdentifier");

Debug.WriteLine("The central processor of this machine is:"+ val);

// 删除键值

RegistryKey delKey = Registry.LocalMachine.OpenSubKey("Software", true);

delKey.DeleteSubKey("CDDriveSn");

}

三、编写代码如下

1、创建启动盘

using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms;

using System.Data;

using System.Management;

using System.Diagnostics;

using Microsoft.Win32;

namespace AT_RegCDRom

{

///

/// Form1 的摘要说明。

///

public class Form1 : System.Windows.Forms.Form

{

///

/// 必需的设计器变量。

///

private System.ComponentModel.Container components = null;

private System.Windows.Forms.Label label1;

private System.Windows.Forms.Button button1;

private static string cdRomSn;

public Form1()

{

//

// Windows 窗体设计器支持所必需的

//

InitializeComponent();

//

// TODO: 在 InitializeComponent 调用后添加任何构造函数代码

//

}

///

/// 清理所有正在使用的资源。

///

protected override void Dispose( bool disposing )

{

if( disposing )

{

if (components != null)

{

components.Dispose();

}

}

base.Dispose( disposing );

}

#region Windows 窗体设计器生成的代码

///

/// 设计器支持所需的方法 - 不要使用代码编辑器修改

/// 此方法的内容。

///

private void InitializeComponent()

{

System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));

this.label1 = new System.Windows.Forms.Label();

this.button1 = new System.Windows.Forms.Button();

this.SuspendLayout();

//

// label1

//

this.label1.Location = new System.Drawing.Point(72, 16);

this.label1.Name = "label1";

this.label1.Size = new System.Drawing.Size(144, 24);

this.label1.TabIndex = 0;

this.label1.Text = "点击开始进行光盘注册";

this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;

//

// button1

//

this.button1.Location = new System.Drawing.Point(104, 56);

this.button1.Name = "button1";

this.button1.Size = new System.Drawing.Size(72, 24);

this.button1.TabIndex = 1;

this.button1.Text = "开始注册";

this.button1.Click += new System.EventHandler(this.button1_Click);

//

// Form1

//

this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);

this.ClientSize = new System.Drawing.Size(280, 101);

this.Controls.Add(this.button1);

this.Controls.Add(this.label1);

this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));

this.MaximizeBox = false;

this.Name = "Form1";

this.Text = "光盘注册";

this.ResumeLayout(false);

}

#endregion

///

/// 应用程序的主入口点。

///

[STAThread]

static void Main()

{

Application.Run(new Form1());

}

///

/// 读取光盘相关信息并进行注册。

///

public void ReadCDRom()

{

//创建获取光盘信息对象

ManagementClass driveClass = new ManagementClass("Win32_CDROMDrive");

//返回该类的所有实例的集合

ManagementObjectCollection drives = driveClass.GetInstances();

//设置状态标志位初始化为false

bool status = false;

//查询所有的光驱

foreach (ManagementObject drv in drives)

{

try

{

//优先获取第一个有光盘的光驱中光盘的序列号

if(drv["VolumeSerialNumber"].ToString()!="")

{

cdRomSn = drv["VolumeSerialNumber"].ToString();

status=true;

//查询结束

break;

}

}

catch

{

//出现异常

status=false;

continue;

}

}

if(status)

{

//开始注册

if(RegCDRomSn(cdRomSn))

{

this.label1.Text = "注册成功!";

this.button1.Text = "关闭";

}

else

{

this.label1.Text = "注册失败!";

this.button1.Text = "关闭";

}

}

else

{

// Initializes the variables to pass to the MessageBox.Show method.

string message = "请插入要注册的启动光盘!";

string caption = "光盘注册";

MessageBoxButtons buttons = MessageBoxButtons.OKCancel;

DialogResult result;

// Displays the MessageBox.

result = MessageBox.Show(this, message, caption, buttons,

MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1);

if(result==DialogResult.OK)

{

ReadCDRom();

}

else

{

Application.Exit();

}

}

driveClass.Dispose();

}

///

/// 把信息写入注册表。

///

public bool RegCDRomSn(string sn)

{

try

{

// 在HKEY_LOCAL_MACHINE\Software下建立一新键,起名为CDDriveSn

RegistryKey key = Registry.LocalMachine.OpenSubKey("Software", true);

// 增加一个子键

RegistryKey newkey = key.CreateSubKey("CDDriveSn");

// 设置此子键的值

newkey.SetValue("CDDriveSn", sn);

// 成功返回true

return true;

}

catch

{

// 出现异常返回false

return false;

}

}

private void button1_Click(object sender, System.EventArgs e)

{

if(this.button1.Text == "开始注册")

{

this.button1.Text = "取消注册";

ReadCDRom();

}

else

{

Application.Exit();

}

}

}

}

2、验证[应用]

该验证原理与注册一样,所以,这里不在做过多描述,要代码的朋友请发信到我的邮箱[yanghuangming@rongji.com]。

以上代码在Visual Studio .NET 2003环境下运行通过。这是俺在为一家反光盘盗版公司开发一个应用程序中所用到的一些东东,这里拿出来与大家一起探讨,如有啥不足之处,欢迎指教,3Q。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有