Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Group policy based restriction for controlpanel and taskmanager in c#

share|improve this question
What does this have to do with C#? It sounds like a group policy thing. Or are you asking "how do I configure group policy using C#?" – Roger Lipscombe Jun 11 '09 at 13:20
thank u edited my question – JKS Jun 11 '09 at 13:37

4 Answers

up vote 1 down vote accepted

Have a look at WMI. Here is a link to an article on WMI Group policy objects: http://msdn.microsoft.com/en-us/library/aa375082(VS.85).aspx

This tool will generate example c# code for you:
WMICodeCreator

share|improve this answer

you can use Registry key to restriction task manager and control panel easily!

share|improve this answer

There is some information on how to edit GPO Registry settings available here: http://msdn.microsoft.com/en-us/library/aa374274(v=VS.85).aspx

There is also a good blog post here: http://blogs.msdn.com/b/dsadsi/archive/2009/07/23/working-with-group-policy-objects-programmatically-simple-c-example-illustrating-how-to-modify-a-registry-based-policy.aspx

The examples are in C++ but some clever person may be able to write a .net wrapper.

share|improve this answer

This isn't a programming question, but a question of workstation policy management. Start looking at e.g. this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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