用于与 Exchange Server 联系人同步的 Windows 服务
我想编写一个 Windows 服务,定期将数据库与 Exchange 2007 服务器实例中的联系人同步。
这可以通过 Exchange Web Services 实现吗?或者我可以使用 powershell 来实现吗?
如果我采用 EWB 路线,这是否意味着我需要客户端设置 Web 服务端点并将其公开?
客户是公司,会拒绝这一要求。有更好的办法吗?
I want to write a windows service that periodically synchronises a database with the contacts in an exchange 2007 server instance.
Is this possible with Exchange Web Services or can I do this with powershell?
If I go the EWB route, does this means that I need the client to set up the Web Service end point and make it pubilc?
The client is corporate and will resist this request. Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使在用 C# 编写的 Windows 服务中,也没有理由不能使用 powershell 来完成此操作。可以通过引用 System.Management.Automation 程序集并使用 Runspace (powershell v1) 或 PowerShell (powershell v2) 类型来在进程内编写和执行 Powershell 命令。
There's no reason why you can't do it with powershell, even within a windows service written in C#. Powershell commands can be composed and executed in-process by way of referencing the System.Management.Automation assembly and working with the Runspace (powershell v1) or PowerShell (powershell v2) Types.