屏蔽和开启”关机“功能

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了屏蔽和开启”关机“功能相关的知识,希望对你有一定的参考价值。

实现效果:

  技术分享图片

  技术分享图片

知识运用:

  注册表项中的NoClose键进行设置

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            RegistryKey rk = Registry.CurrentUser.CreateSubKey(@"SoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer");
            rk.SetValue("NoClose",1);
            MessageBox.Show("屏蔽关机功能成功");
        }
        private void button2_Click(object sender, EventArgs e)
        {
            RegistryKey rk = Registry.CurrentUser.CreateSubKey(@"SoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer");
            rk.SetValue("NoClose", 0);
            MessageBox.Show("开启关机功能成功,重新启动生效");
        }

  

以上是关于屏蔽和开启”关机“功能的主要内容,如果未能解决你的问题,请参考以下文章

Win10怎么开启WOL网络唤醒远程开机功能

Android 如何通过代码设置adb指令,使手机关机?

定时停止与开启Azure 虚拟机

deepin如何休眠

HTML代码片段

HTML代码片段