无法使用 System.DirectoryServices.AccountManagement.UserPrincipal.Delete() 删除本地用户

发布于 2024-12-26 04:12:44 字数 652 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故人的歌 2025-01-02 04:12:44

您可以尝试在 FindByIdentity 重载中指定 IdentityType 参数:

using (var up = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, "test1"))

You might try specifying the identityType parameter in the FindByIdentity overload:

using (var up = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, "test1"))
缱绻入梦 2025-01-02 04:12:44

这是一段对我有用的代码:

try
{
  PrincipalContext domainContext = new PrincipalContext(ContextType.Domain, "WM2008R2ENT:389", "dc=dom,dc=fr", "jpb", "pwd");

  /* Retreive a user
   */
  UserPrincipal user = UserPrincipal.FindByIdentity(domainContext, "user3");
  if (user != null)
    user.Delete();
}
catch (Exception e)
{
  Console.WriteLine(e.Message);
}
Console.WriteLine("Done!");

编辑

因此对于本地计算机(SAM)来说,它如下,与您的代码完全相同,但异常管理显示访问被拒绝错误,如果代码不在提升权限的管理员提示符下运行。我认为你的错误就是由此而来。

try
{
  PrincipalContext computerContext = new PrincipalContext(ContextType.Machine);

  /* Retreive a user
   */
  UserPrincipal user = UserPrincipal.FindByIdentity(computerContext, "utilisateur1");
  if (user != null)
    user.Delete();
}
catch (Exception e)
{
  Console.WriteLine(e.Message);
}
Console.WriteLine("Done!");

Console.ReadLine();

Here is a piece of code that is working for me :

try
{
  PrincipalContext domainContext = new PrincipalContext(ContextType.Domain, "WM2008R2ENT:389", "dc=dom,dc=fr", "jpb", "pwd");

  /* Retreive a user
   */
  UserPrincipal user = UserPrincipal.FindByIdentity(domainContext, "user3");
  if (user != null)
    user.Delete();
}
catch (Exception e)
{
  Console.WriteLine(e.Message);
}
Console.WriteLine("Done!");

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.

try
{
  PrincipalContext computerContext = new PrincipalContext(ContextType.Machine);

  /* Retreive a user
   */
  UserPrincipal user = UserPrincipal.FindByIdentity(computerContext, "utilisateur1");
  if (user != null)
    user.Delete();
}
catch (Exception e)
{
  Console.WriteLine(e.Message);
}
Console.WriteLine("Done!");

Console.ReadLine();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文