vote up 0 vote down star

i have used following code to disable the Windows Control Panel. It successfully disables the Control Panel, but it needs a sytem restart to apply changes. Does anybody know how I can apply these changes to the Control Panel immediately, without requiring a system restart? Can anybody can help me?

        RegistryKey RegKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer");
        RegKey.SetValue("NoControlPanel", true, RegistryValueKind.DWord); RegKey.Close();

        RegKey = Registry.LocalMachine.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\Explorer");
        RegKey.SetValue("NoControlPanel", true, RegistryValueKind.DWord); RegKey.Close();

        //registry
        RegKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\
        Group Policy Objects\LocalUser\Software\Microsoft\Windows\CurrentVersion\Policies\System");
        RegKey.SetValue("DisableRegistryTools", true, RegistryValueKind.DWord); RegKey.Close();

        RegKey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Policies\System");
        RegKey.SetValue("DisableRegistryTools", true, RegistryValueKind.DWord); RegKey.Close();
        return true;
flag

32% accept rate

1 Answer

vote up 0 vote down

You could try to run Gpupdate after you made the registry changes. This should in theory reload the group policy details and therefore disable the control panel.

link|flag
thanks for ur response, Gpupdate wont work gpedit /Target:User /force gpedit /Target:computer /force any other method – Suriyan Suresh Jun 27 at 6:27
is any other method to update changes immediately – Suriyan Suresh Jul 3 at 4:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.