从 C# 调用 Lync server 2010 Powershell cmdlet

发布于 2025-01-02 08:46:11 字数 486 浏览 1 评论 0原文

我不得不问,我们是否需要运行

pipeline.Commands.AddScript(@"Import-Module 'C:\Program Files\Common Files\Microsoft Lync Server 2010\Modules\Lync\Lync.psd1'");

每次我们运行 Lync Powershell Cmdlet 时,或者有什么方法可以在初始化 Runspace 时执行此操作?正如我们在 Exchange 服务器案例中所做的那样,例如

RunspaceConfiguration.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.E2010", out warning);

以及我们需要在 Lync Server Powershell cmdlet 的 C# 项目中添加哪些程序集引用(除了 System.Management.Automation.Runspaces),

提前致谢。

I have to ask that do we need to run

pipeline.Commands.AddScript(@"Import-Module 'C:\Program Files\Common Files\Microsoft Lync Server 2010\Modules\Lync\Lync.psd1'");

each time we run a Lync Powershell Cmdlet or is there any way we can do it while initializing Runspace? As we do in Exchange server case e.g.

RunspaceConfiguration.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.E2010", out warning);

And also what assembly references we need to add in C# project for Lync Server Powershell cmdlets (besides System.Management.Automation.Runspaces)

Thanks in advance.

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

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

发布评论

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

评论(1

回忆追雨的时光 2025-01-09 08:46:11

幸运的是我找到了解决方案。我把它贴在这里。

从 C# .NET 调用 lync 服务器 cmdlet

Luckily I found the solution. And I posted it here.

Calling lync server cmdlets from c# .NET

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