无法使用 System.DirectoryServices.AccountManagement.UserPrincipal.Delete() 删除本地用户
我正在尝试使用 System.DirectoryServices.AccountManagement.UserPrincipal 删除本地用户帐户
我正在使用在 Windows Server 2008 R2 Enterprise SP1 上运行的 VS 2010
这是我的代码
using (var ctx = new PrincipalContext(ContextType.Machine))
{
using (var up = UserPrincipal.FindByIdentity(ctx, "test1"))
{
if (up != null)
{
up.Delete();
}
}
}
当 up.Delete()< /code> 被调用,我收到异常并显示以下消息:
位于路径的 Active Directory 对象 WinNT://DOMAIN/MACHINENAME 不是容器。
我应该怎么做才能使 Delete()
工作?
I am trying to delete local user account using System.DirectoryServices.AccountManagement.UserPrincipal
I am using VS 2010 running on Windows Server 2008 R2 Enterprise SP1
Here is my code
using (var ctx = new PrincipalContext(ContextType.Machine))
{
using (var up = UserPrincipal.FindByIdentity(ctx, "test1"))
{
if (up != null)
{
up.Delete();
}
}
}
When up.Delete()
is called, I receive the exception with the following message:
The Active Directory object located at the path
WinNT://DOMAIN/MACHINENAME is not a container.
What should I do to make Delete()
work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试在 FindByIdentity 重载中指定 IdentityType 参数:
You might try specifying the identityType parameter in the FindByIdentity overload:
这是一段对我有用的代码:
编辑
因此对于本地计算机(SAM)来说,它如下,与您的代码完全相同,但异常管理显示访问被拒绝错误,如果代码不在提升权限的管理员提示符下运行。我认为你的错误就是由此而来。
Console.ReadLine();
Here is a piece of code that is working for me :
Edited
So for the local machine (SAM) it's the following, exactly the same as your code but the exception management show an acces denied error if the the code is not run in an elevated right administrator prompt. I think your error come from that.
Console.ReadLine();