Loading
0

C#实现进入windows系统前发出警告提示方法
被墙跳转TG:@qianhenetwork QQ 851617266

301免备案跳转微信公众号
腾讯云服务器大促销。
华为服务器
前言:c#中如何在进入windwos系统前发出警告信息,如何通过c#实现进入系统前发出警告信息

private void button1_Click(object sender, EventArgs e)
        {
            RegistryKey rkey = Registry.LocalMachine;//获取注册表中的LocalMachine节点
            RegistryKey rkeyInfo = rkey.CreateSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon");//创建注册表项
            rkeyInfo.SetValue("LegalNoticeCaption", textBox1.Text, RegistryValueKind.String);//设置键
            rkeyInfo.SetValue("LegalNoticeText", textBox2.Text, RegistryValueKind.String);//设置值
            MessageBox.Show("已完成设置,请重新启动计算机!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }


301免备案跳转微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://www.zfcdn.xyz/showinfo-23-35932-0.html
亲爱的:被墙域名跳转TG:@qianhenetwork QQ:851617266,可否收藏+评论+分享呢?
上一篇:c#向应用程序日志写入自定义数据信息
下一篇:C#实现将系统设置为休眠状态方法