Lync Server Admin Guide: Edit or Configure Simple URLs
This article is part of the Microsoft Lync Server 2010 Administration Guide: PowerShell Supplement.
Configure Simple URLs
- To configure simple URLs
To define simple URLs for dial-in conferencing and meetings, use the following set of commands:
$urlEntry = New-CsSimpleUrlEntry -Url "https://dialin.fabrikam.com"
$simpleUrl = New-CsSimpleUrl -Component "dialin" -Domain "*" -SimpleUrl $urlEntry -ActiveUrl "https://dialin.fabrikam.com"
$urlEntry2 = New-CsSimpleUrlEntry -Url "https://meet.fabrikam.com"
$simpleUrl2 = New-CsSimpleUrl -Component "meet" -Domain "fabrikam.com" -SimpleUrl $urlEntry2
New-CsSimpleUrlConfiguration -Identity "site:Redmond" -SimpleUrl @{Add=$simpleUrl,$simpleUrl2}
- To define the optional Admin simple URL
To define an Admin simple URL use the following set of commands:
$urlEntry = New-CsSimpleUrlEntry -Url "https://admin.fabrikam.com"
$simpleUrl = New-CsSimpleUrl -Component "admin" -Domain "*" -SimpleUrl $urlEntry -ActiveUrl "https://admin.fabrikam.com"
New-CsSimpleUrlConfiguration -Identity "site:Redmond" -SimpleUrl @{Add=$simpleUrl }
For more information