I am getting a NullReference Exception when I try to set a value to a registry key. Below is my code. Does anyone know why?
using System;
using Microsoft.Win32;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
RegistryKey myKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\Current Version\\Policies\\System", true);
myKey.SetValue("DisableTaskMgr", 0, RegistryValueKind.DWord);
}
}
}