软件添加注册码

// 步骤一: 获得CUP序列号和硬盘序列号的实现代码如下:   
  
  
// 取CPU序号   
         public   string  getCpu()      
ExpandedBlockStart.gifContractedBlock.gif        
{      
            
string strCpu = null;      
            ManagementClass myCpu 
= new ManagementClass("win32_Processor");      
            ManagementObjectCollection myCpuConnection 
= myCpu.GetInstances();      
            
foreach (ManagementObject myObject in myCpuConnection)      
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{      
                strCpu 
= myObject.Properties["Processorid"].Value.ToString();      
                
break;      
            }
 return strCpu;      
        }
       
  
  
  
       
//  取得设备硬盘的卷标号            
         public   string  GetDiskVolumeSerialNumber()      
ExpandedBlockStart.gifContractedBlock.gif        
{      
            ManagementClass mc 
= new ManagementClass("Win32_NetworkAdapterConfiguration");      
            ManagementObject disk 
= new ManagementObject("win32_logicaldisk.deviceid=\"d:\"");      
            disk.Get();      
            
return disk.GetPropertyValue("VolumeSerialNumber").ToString();      
     
        }
   
  
  
// 步骤二: 收集硬件信息生成机器码, 代码如下:   
  
  
        
// 生成机器码             
         private   void  button1_Click( object  sender, EventArgs e)      
ExpandedBlockStart.gifContractedBlock.gif        
{      
            label2.Text 
= getCpu() + GetDiskVolumeSerialNumber();//获得24位Cpu和硬盘序列号       
            string[] strid = new string[24];      
                             
            
for (int i = 0; i < 24; i++)//把字符赋给数组       
ExpandedSubBlockStart.gifContractedSubBlock.gif
            {      
                strid[i] 
= label2.Text.Substring(i, 1);      
            }
 label2.Text = "";      
            Random rdid 
= new Random();      
            
for (int i = 0; i < 24; i++)//从数组随机抽取24个字符组成新的字符生成机器三       
ExpandedSubBlockStart.gifContractedSubBlock.gif
            {      
                label2.Text 
+= strid[rdid.Next(024)];      
            }
      
        }
      
  
  
步骤三: 使用机器码生成软件注册码, 代码如下:   
  
  
        
public   int [] intCode  =   new   int [ 127 ]; // 用于存密钥       
         public   void  setIntCode() // 给数组赋值个小于10的随机数          
ExpandedBlockStart.gifContractedBlock.gif
         {      
            Random ra 
= new Random();      
            
for (int i = 1; i < intCode.Length; i++)      
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{      
                intCode[i] 
= ra.Next(09);      
            }
      
        }
       
          
        
public   int [] intNumber  =   new   int [ 25 ]; // 用于存机器码的Ascii值        
         public   char [] Charcode  =   new   char [ 25 ]; // 存储机器码字        
        
// 生成注册码            
         private   void  button2_Click( object  sender, EventArgs e)      
ExpandedBlockStart.gifContractedBlock.gif        
{      
            
if (label2.Text != "")      
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{                //把机器码存入数组中         
                setIntCode();//初始化127位数组            
                for (int i = 1; i < Charcode.Length; i++)//把机器码存入数组中       
ExpandedSubBlockStart.gifContractedSubBlock.gif
                {      
                    Charcode[i] 
= Convert.ToChar(label2.Text.Substring(i - 11));      
                }
//              
                for (int j = 1; j < intNumber.Length; j++)//把字符的ASCII值存入一个整数组中。      
ExpandedSubBlockStart.gifContractedSubBlock.gif
                {      
                    intNumber[j] 
= intCode[Convert.ToInt32(Charcode[j])] + Convert.ToInt32(Charcode[j]);      
                }
      
                
string strAsciiName = null;//用于存储机器码              
                for (int j = 1; j < intNumber.Length; j++)      
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{      
                    
//MessageBox.Show((Convert.ToChar(intNumber[j])).ToString());       
                    if (intNumber[j] >= 48 && intNumber[j] <= 57)//判断字符ASCII值是否0-9之间       
ExpandedSubBlockStart.gifContractedSubBlock.gif
                    {      
                        strAsciiName 
+= Convert.ToChar(intNumber[j]).ToString();      
                    }
      
                    
else if (intNumber[j] >= 65 && intNumber[j] <= 90)//判断字符ASCII值是否A-Z之间       
ExpandedSubBlockStart.gifContractedSubBlock.gif
                    {      
                        strAsciiName 
+= Convert.ToChar(intNumber[j]).ToString();      
                    }
      
                    
else if (intNumber[j] >= 97 && intNumber[j] <= 122)//判断字符ASCII值是否a-z之间       
ExpandedSubBlockStart.gifContractedSubBlock.gif
                    {      
                        strAsciiName 
+= Convert.ToChar(intNumber[j]).ToString();      
                    }
      
                    
else//判断字符ASCII值不在以上范围内         
ExpandedSubBlockStart.gifContractedSubBlock.gif
                    {      
                        
if (intNumber[j] > 122)//判断字符ASCII值是否大于z        
ExpandedSubBlockStart.gifContractedSubBlock.gif
                        {      
                            strAsciiName 
+= Convert.ToChar(intNumber[j] - 10).ToString();      
                        }
      
                        
else     
ExpandedSubBlockStart.gifContractedSubBlock.gif                        
{      
                            strAsciiName 
+= Convert.ToChar(intNumber[j] - 9).ToString();      
                        }
      
                    }
      
                    label3.Text 
= strAsciiName;//得到注册码          
                }
      
            }
      
            
else     
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{      
                MessageBox.Show(
"请选生成机器码""注册提示");      
            }
      
        }
      
  
  
  
步骤四: 用户输入注册码注册软件, 演示代码如下:   
  
  
        
private   void  btnRegist_Click( object  sender, EventArgs e)      
ExpandedBlockStart.gifContractedBlock.gif        
{      
            
if (label3.Text != "")      
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{      
                
if (textBox1.Text.TrimEnd().Equals(label3.Text.TrimEnd()))      
ExpandedSubBlockStart.gifContractedSubBlock.gif                
{      
                    Microsoft.Win32.RegistryKey retkey 
= Microsoft.Win32.Registry.CurrentUser.OpenSubKey("software"true).CreateSubKey("ZHY").CreateSubKey("ZHY.INI").CreateSubKey(textBox1.Text.TrimEnd());      
                    retkey.SetValue(
"UserName""MySoft");      
                    MessageBox.Show(
"注册成功");      
                }
      
ExpandedSubBlockStart.gifContractedSubBlock.gif                
else { MessageBox.Show("注册码输入错误"); }      
            }
      
            
else     
ExpandedSubBlockStart.gifContractedSubBlock.gif            
{      
                MessageBox.Show(
"请生成注册码""注册提示");      
            }
      
        }
    

转载于:https://www.cnblogs.com/cccc/archive/2009/08/19/1549444.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值