码迷,mamicode.com
首页 > 其他好文 > 详细

禁止使用命令提示符

时间:2019-01-29 22:06:06      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:运用   current   cmd   value   private   实现   child   software   tar   

实现效果:

  技术分享图片

知识运用:
  
RegistryKey类的CreateSubKey和SetValue方法

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            RegistryKey regMain;
            RegistryKey regChild;
            regMain = Registry.CurrentUser;
            regChild = regMain.CreateSubKey(@"Software\Policies\Microsoft\Windows\System");
            regChild.SetValue("DisableCMD",1);
            regChild.Close();
            MessageBox.Show("禁止成功!");
        }
        private void button2_Click(object sender, EventArgs e)
        {
            RegistryKey regMain;
            RegistryKey regChild;
            regMain = Registry.CurrentUser;
            regChild = regMain.CreateSubKey(@"Software\Policies\Microsoft\Windows\System");
            regChild.SetValue("DisableCMD", 0);
            regChild.Close();
            MessageBox.Show("禁止成功!");
        }

  

禁止使用命令提示符

标签:运用   current   cmd   value   private   实现   child   software   tar   

原文地址:https://www.cnblogs.com/feiyucha/p/10335856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!