使用 C# 更改本地 Windows 用户属性
我正在寻找一种简单的方法来使用简单的 C# 应用程序修改 Windows 7 中的本地用户属性。
我不熟悉许多 Windows 系统库,并且希望完成以下每项任务:
- 在 Windows 中启用/禁用本地用户帐户。
- 更改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:
- Enable/Disable a local user account in windows.
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有权访问,这将使您能够访问所需的内容。
这是文档的链接..
http://msdn. microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx
If you have access this will give you access to what you need.
Here is a link to the docs..
http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx
我在使用 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.