使用 C# 更改本地 Windows 用户属性

发布于 2024-10-21 15:27:39 字数 242 浏览 2 评论 0原文

我正在寻找一种简单的方法来使用简单的 C# 应用程序修改 Windows 7 中的本地用户属性。

我不熟悉许多 Windows 系统库,并且希望完成以下每项任务:

  1. 在 Windows 中启用/禁用本地用户帐户。
  2. 更改Windows本地用户帐户的密码。

一些示例代码和代码功能的简单解释将非常有帮助。

编辑:

当该程序运行时,我将拥有机器的管理访问权限。

I am looking for a simple method to modify a local user's properties in windows 7 using a simple c# application.

I am not familiar with many of the Windows system libraries and am looking to accomplish each of the following tasks:

  1. Enable/Disable a local user account in windows.
  2. Change the password of a local user account in windows.

Some example code and an simple explanation of what the code does would be very helpful.

Edit:

I will have administrative access to the machine when this program is going to be run.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你是我的挚爱i 2024-10-28 15:27:39

如果您有权访问,这将使您能够访问所需的内容。

DirectoryEntry localDirectory = new DirectoryEntry("WinNT://"Environment.MachineName.ToString());
DirectoryEntries users = localDirectory.Children;
DirectoryEntry user = users.Find("userName");

这是文档的链接..

http://msdn. microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx

If you have access this will give you access to what you need.

DirectoryEntry localDirectory = new DirectoryEntry("WinNT://"Environment.MachineName.ToString());
DirectoryEntries users = localDirectory.Children;
DirectoryEntry user = users.Find("userName");

Here is a link to the docs..

http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx

書生途 2024-10-28 15:27:39

我在使用 System.DirectoryServices.AccountManagement 命名空间方面获得了非常好的体验。它可以让您用帐户做所有您想做的事情,而无需弄乱魔术字符串。

System.DirectoryServices.AccountManagement 命名空间:
http://msdn.microsoft.com/en-us/library /system.directoryservices.accountmanagement.aspx

要查看的关键入口点是 PrincipalContext 类。

I have had a really great experience using the System.DirectoryServices.AccountManagement namespace. It lets you do all the stuff you want to do with accounts without needing to mess with magic strings.

System.DirectoryServices.AccountManagement namespace:
http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx

The key entry point to look at is the PrincipalContext class.

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