From 65e43a4b2087c4b3db794861b30fff5696c6c707 Mon Sep 17 00:00:00 2001 From: robvde Date: Tue, 29 Oct 2013 21:28:00 +0400 Subject: [PATCH] Fixed Lync Enterprise Edition simple url are not created --- .../WebsitePanel.Providers.HostedSolution.Lync2013/LyncBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Lync2013/LyncBase.cs b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Lync2013/LyncBase.cs index b8cd6a62..7894d701 100644 --- a/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Lync2013/LyncBase.cs +++ b/WebsitePanel/Sources/WebsitePanel.Providers.HostedSolution.Lync2013/LyncBase.cs @@ -637,7 +637,7 @@ namespace WebsitePanel.Providers.HostedSolution command = new Command("Set-CsSimpleUrlConfiguration"); command.Parameters.Add("Identity", "Global"); - command.Parameters.Add("Tenant", id); + //command.Parameters.Add("Tenant", id); command.Parameters.Add("SimpleUrl", SimpleUrls); ExecuteShellCommand(runspace, command, false); }