vote up 6 vote down star
2

Hi,

How to remove windows user account using C#?

Thanks,

flag

4 Answers

vote up 5 vote down

Clause Thomsen was close, you need to pass the DirectoryEntry.Remove method a DirectoryEntry paramenter and not a string, like:

DirectoryEntry localDirectory = new DirectoryEntry("WinNT://" + Environment.MachineName.ToString());
DirectoryEntries users = localDirectory.Children;
DirectoryEntry user = users.Find("userName");
users.Remove(user);
link|flag
vote up 2 vote down

Something like this should do the trick(not tested):

DirectoryEntry localMachine = new DirectoryEntry("WinNT://" +  Environment.MachineName);

DirectoryEntries entries = localMachine.Children;
DirectoryEntry user = entries.Remove("User");
entries.CommitChanges();
link|flag
vote up 1 vote down

Check out this link

link|flag
I'm not using a domain, plus this is only removes user from group. Thanks – Mark Mar 13 at 12:24
it may not but it gives a fairly detailed example on working with Windows Active directories. – cgreeno Mar 13 at 12:54
However, if you don't feel it is relevant then I can remove it. – cgreeno Mar 13 at 12:56
vote up 0 vote down

Alternatively using System.DirectoryServices.AccountManagement in .NET 3.5:-

http://msdn.microsoft.com/en-us/library/bb924557.aspx

link|flag

Your Answer

Get an OpenID
or

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