要启用或禁用本地计算机上的用户,我使用以下代码段。
DirectoryEntry localMachine = new DirectoryEntry("WinNT://" + Environment.MachineName);
DirectoryEntry currentUser = localMachine.Children.Find(user, "Administrators");
currentUser.Invoke("AccountDisabled", new object[] { true });
currentUser.CommitChanges();
我将用户分配为字符串。我收到“找不到文件路径错误”:Comexception Unhandled。
我的代码有什么问题吗?