Need a point of start...

  • Thread starter Thread starter Ricardo Luceac
  • Start date Start date
R

Ricardo Luceac

I need to make a program that I will use at my office, to do some tasks,
like changing the administrator password, configuring some system
policies...

How can I do that in c#???

I don't know even where to start...

thx...
 
You will have to start with platform invoke as you will have to work with
the Windows security API.

Otherwise you may start with Interop. In this case you will wrap the calls
to the api in the com object and then use that com from your C# code.

And finally, you will have to study part of the MS SDK related to the
Security....
 
Back
Top