1

我正在开发一个需要连接到 lync 受信任的应用程序池并执行各种任务的程序。这是安装程序,我在其中设置池、应用程序,并且基本上将我所有的鸭子排成一排。

我可以使用以下代码创建应用程序池:

        var cmd = string.Format("new-csTrustedApplicationPool -Identity {0} -Registrar {1} -Site {2} -ComputerFqdn {3}", txtPoolIdentity.Text, registrar, site, localhost);

        try
        {
            _ps.Commands.Clear();
            _ps.AddScript(cmd);
            _ps.Invoke();

            if (_ps.Streams.Error.Any())
            {
                foreach (var errorRecord in _ps.Streams.Error)
                {
                    MessageBox.Show(errorRecord.ToString());
                }
            }
            else
            {
                MessageBox.Show(string.Format("Trusted Application Pool {0} created", txtPoolIdentity.Text));
            }
        }
        catch (Exception ex)
        {
           //Handling code
        }

正如我所说,这很好用。但是,当我尝试执行以下代码时,该过程失败并出现“无效参数”错误。

try
        {
            _ps.Commands.Clear();
            _ps.AddScript("enable-CSTopology");
            _ps.Invoke();
            if (_ps.Streams.Error.Any())
            {
                foreach (var errorRecord in _ps.Streams.Error)
                {
                    MessageBox.Show(errorRecord.ToString());
                }
            }
        }
        catch (Exception ex)
        {
             //handling code
        }

除了“enable-CsTopology”不带任何参数。我已经用谷歌搜索了,但我在这里没有得到任何牵引力。任何帮助表示赞赏!

4

1 回答 1

0

Feeling intensely stupid, I later discovered that the PS object wasn't running with elevated privileges, which caused the topology change to fail. Using the powershell command found here solved the issue for me.

于 2015-02-27T18:26:05.280 回答