是否可以使用 C# 更改 Outlook 的 pop3 和 ldap 设置?
是否可以使用 C# 更改本地 Outlook 客户端 pop3 的密码和其他设置? 任何帮助表示赞赏。 我搜索的运气不太好。 谢谢。
Is it possible to change the password and other settings of a local Outlook client's pop3 with c#? Any help is appreciated. I did not have much luck searching. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看Outlook 兑换实用程序。
至少,它有一些 API 可以使用 RDOAccounts 对象模型来查询/修改 Outlook 帐户。< /a>
You can take a look at the Outlook Redemption utilities.
At least, it has some API to query/modify Outlook acounts with the RDOAccounts object model.
我以前用 C# 做过一些 AD 工作,但从未更改过 AD 设置。 我不得不更改一些用户信息,但从未更改过任何实际设置; 不过,我相信这是完全可能的。
该网站将向您展示如何使用 C# 中的 AD 执行几乎所有操作。 我希望它有帮助。
http://www.codeproject.com/KB/system/everythingInAD.aspx
编辑
不过,在通过 C# 修改 AD 时要记住的一件重要事情是安全性仍然存在。 您需要使用有权修改内容的有效用户名/密码连接到 AD。
I've done some work with AD in C# before, but I've never had to change AD settings. I've had to change some user information but never any actual settings; however, I believe it is fully possible.
This website will show you how to do almost everything with the AD in c#. I hope it helps.
http://www.codeproject.com/KB/system/everythingInAD.aspx
EDIT
One important thing to remember, though, when modifying AD through C# is that security is still in place. You will need to connect to the AD using a valid username/password that has rights to modify things.