如何使用EWS托管API1.2(c#)获取Outlook用户(OWA)的语言设置
您好,
Hi,
如何使用EWS托管API1.2(c#)获取Outlook用户(OWA)的语言设置
How to get language setting for Outlook user (OWA) using EWS Managed API1.2 (c#)
注意:我正在使用 Exchange Server 2010 SP1
Note: I am using Exchange Server 2010 SP1
谢谢
Aditya
OWA的语言设置存储在邮箱级别,我们无法使用EWS进行访问。
The langauge setting for OWA is stored on Mailbox level and we can't get to it using EWS.
但是,我们可以使用 Exchange PowerShell cmdlet自动化
通过运行以下cmdlet(来自.net代码)来获取所需信息。:
However, We could use Exchange PowerShell cmdlets automation to get the required information by running following cmdlet(from .net code).:
Get-Mailbox -Identity" User" | fl语言
Get-Mailbox -Identity "User" |fl Languages
对于Exchange PowerShell cmdlet自动化,请参阅@
http://blogs.msdn.com/b/akashb/archive/2010/03 /25/how-to-migrating-exchange-2007-powershell-managed-code-to-work-with-exchange-2010.aspx
For Exchange PowerShell cmdlet automation refer @ http://blogs.msdn.com/b/akashb/archive/2010/03/25/how-to-migrating-exchange-2007-powershell-managed-code-to-work-with-exchange-2010.aspx
另外,请参阅相关链接:
Also, refer a related link:
设置用户的语言和OWA选项
http:// gallery .technet.microsoft.com / office / 624050b2-a4f6-456f-a9ce-14d6c3d65b8b9ce-14d6c3d65b8b
Set user's language and OWA options
http://gallery.technet.microsoft.com/office/624050b2-a4f6-456f-a9ce-14d6c3d65b8b9ce-14d6c3d65b8b
希望这会有所帮助!
问候,
Brijs
Brijs博客......超越b
明显