Domain controller security setting?

G

Guest

Hello,

I'm writing a C# program on setting security for domain controller. what's
a function call or class that apply for the security setting? is there a
sample code?
Here are the list of what I want to do:
-Administrative tools
-Domain controller security policy
-Security setting
-IP security policies on Active Directory
-Manage IP filter lists and filter actions.
-....................

thanks
 
W

Willy Denoyette [MVP]

No such function or class exists, note that your requirements don't even fit
a single class. But why reinvent the wheel, such tools do already exist and
are distributed as a separate downloadable administration pack. Specific
tools can be written using scripting languages, domain admins do not tend to
use managed languages for this.

Willy.



| Hello,
|
| I'm writing a C# program on setting security for domain controller.
what's
| a function call or class that apply for the security setting? is there a
| sample code?
| Here are the list of what I want to do:
| -Administrative tools
| -Domain controller security policy
| -Security setting
| -IP security policies on Active Directory
| -Manage IP filter lists and filter actions.
| -....................
|
| thanks
|
 
G

Guest

I know there are tools out there to do manually, but I need it to run
automaticly because user always pick the wrong selection then my requirement.

thanks
 
W

Willy Denoyette [MVP]

Take a look at the System.Management and the System.DirectoryServices
namespace classes, they wrap WMI and ADSI and are the base classes to be
used by administrative tools like this.
But again, your requirements are so broad that you might consider a
commercial solution,not that it will help if the user picks the wrong
selection from these too.

Willy.

|I know there are tools out there to do manually, but I need it to run
| automaticly because user always pick the wrong selection then my
requirement.
|
| thanks
|
| "Willy Denoyette [MVP]" wrote:
|
| > No such function or class exists, note that your requirements don't even
fit
| > a single class. But why reinvent the wheel, such tools do already exist
and
| > are distributed as a separate downloadable administration pack. Specific
| > tools can be written using scripting languages, domain admins do not
tend to
| > use managed languages for this.
| >
| > Willy.
| >
| >
| >
| > | > | Hello,
| > |
| > | I'm writing a C# program on setting security for domain controller.
| > what's
| > | a function call or class that apply for the security setting? is there
a
| > | sample code?
| > | Here are the list of what I want to do:
| > | -Administrative tools
| > | -Domain controller security policy
| > | -Security setting
| > | -IP security policies on Active Directory
| > | -Manage IP filter lists and filter actions.
| > | -....................
| > |
| > | thanks
| > |
| >
| >
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top