美文网首页技术教程C#
用c#编写一个Windows激活工具

用c#编写一个Windows激活工具

作者: 花伤情犹在 | 来源:发表于2021-02-08 22:47 被阅读0次

    介绍

    本文给大家介绍一下我用c#写的windows激活工具
    该exe文件是本人自己写的,供学习使用,也可以作为工具使用。
    用c#语言写的,原来是用c#隐式执行cmd命令达到给Windows添加秘钥和卸载秘钥(即主要的激活能和恢复到未激活状态这2个功能)
    首先看一下界面

    在这里插入图片描述

    演示一下运行效果!!!

    假如现在你的Windows处于未激活状态


    在这里插入图片描述

    你只需要点击一键激活Windows就可以激活电脑

    在这里插入图片描述
    然后Windows就立马激活成功!
    在这里插入图片描述
    如果你想恢复到未激活状态,只需要点击一键卸载Windows秘钥
    在这里插入图片描述
    这时候Windows又处于未激活状态 --------(很多win10系统用户由于不满意激活方式,希望将已激活的win10变为未激活状态)

    代码参考

    using System;
    using System.Diagnostics;
    using System.IO;
    using System.Windows.Forms;
    using WindowsFormsApplication2;
    
    
    namespace RunDosCommandForm
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                string[] nmb = { "slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX", "slmgr /skms kms.03k.org" };
                for (int a = 0; a < nmb.Length; a++)
                {
                    ExcuteDosCommand(nmb[a]);
                }
            }
    
            private void ExcuteDosCommand(string cmd)
            {
                try
                {
                    Process p = new Process();
                    p.StartInfo.FileName = "cmd";
                    p.StartInfo.UseShellExecute = false;
                    p.StartInfo.RedirectStandardInput = true;
                    p.StartInfo.RedirectStandardOutput = true;
                    p.StartInfo.RedirectStandardError = true;
                    p.StartInfo.CreateNoWindow = true;
                    p.OutputDataReceived += new DataReceivedEventHandler(sortProcess_OutputDataReceived);
                    p.Start();
                    StreamWriter cmdWriter = p.StandardInput;
                    p.BeginOutputReadLine();
                    if (!String.IsNullOrEmpty(cmd))
                    {
                        cmdWriter.WriteLine(cmd);
                    }
                    cmdWriter.Close();
                    p.WaitForExit();
                    p.Close();
                }
                catch (Exception e)
                {
                    MessageBox.Show("执行命令失败,请检查输入的命令是否正确!");
                }
            }
    
            private void sortProcess_OutputDataReceived(object sender, DataReceivedEventArgs e)
            {
                if (!String.IsNullOrEmpty(e.Data))
                {
                    this.BeginInvoke(new Action(() => { this.listBox1.Items.Add(e.Data); }));
                }
            }
    
            private void button2_Click(object sender, EventArgs e)
            {
                ExcuteDosCommand("slmgr /upk");
            }
    
    
        }
    }
    

    代码讲解:
    因为是c#隐式执行cmd命令和你自己在以管理员身份运行的cmd上运行是一样的,只是封装成exe文件使用起来更方便一点而已,没有什么技术含量。

    首先要将界面设计好


    在这里插入图片描述

    从图中可以看到只有2个按钮,so,代码中也只有2个click事件( button1_Click和 button2_Click)

    Button1

     private void button1_Click(object sender, EventArgs e)
            {
                string[] nmb = { "slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX", "slmgr /skms kms.03k.org" };
                ExcuteDosCommand("");
                for (int a = 0; a < nmb.Length; a++)
                {
                    ExcuteDosCommand(nmb[a]);
                }
            }
    

    Button2

    private void button2_Click(object sender, EventArgs e)
            {
                ExcuteDosCommand("slmgr /upk");
            }
    

    可以看到这个2个button_click事件中都触发了ExcuteDosCommand()方法,并且往里面进行传参。

    而ExcuteDosCommand()方法就是调用cmd来执行命令,ExcuteDosCommand(参数)括号里面的参数也就是要执行的命令

    string[] nmb = { "slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX", "slmgr /skms kms.03k.org" };
    

    这个string类型的数组就是起到储存cmd执行命令的作用。
    可以看到数组里面储存了2条命令,这两条命令就是给Windows添加秘钥的。

    for (int a = 0; a < nmb.Length; a++)
                {
                    ExcuteDosCommand(nmb[a]);
                }
    

    这个for循环的作用是因为激活Windows运行的cmd命令有多条,需要重复执行
    a < nmb.Length就是有数组里面有几条命令就循环几次。 ExcuteDosCommand(nmb[a])由于里面传参的是数组,传参的值会根据循环的次数而改变。

     ExcuteDosCommand("slmgr /upk")
    

    这个命令就是button2触发的,用来卸载Windows秘钥的。

    以上就是编写Windows激活器的思路,都是本人自己闲着无聊萌发的思路。

    相关文章

      网友评论

        本文标题:用c#编写一个Windows激活工具

        本文链接:https://www.haomeiwen.com/subject/gxtqxltx.html