When Lync Server 2010 is deployed, there are two main administration tools:
- Lync Server Control Panel
- Lync Server Management Shell
Both are available from the Start-menu on a Lync Server:
Lync Server Control Panel
The Lync Server Control Panel are a web-based graphical administration tool built on Silverlight:
When deploying Lync, an administrative access URL needs to be specified, i.e. https://lync-admin.contoso.local. This makes it possible to administer the Lync Server 2010 environment from any web-based client that supports Silverlight.
In fact, every operation we`re performing in the Lync Server Control Panel is running PowerShell Lync cmdlets in the background.
Lync Server Management Shell
The Lync Server Management Shell is based on Windows PowerShell 2.0:
Like Exchange Server 2010, Lync Server 2010 provides an IIS (Internet Information Services) PowerShell provider.
This makes it possible to administer the Lync Server 2010 environment using PowerShell remoting. An example:
|
001
002 |
$session = New-PSSession -ConnectionUri https://lync-admin.contoso.local/OcsPowershell -Credential (Get-Credential)
Import-PSSession -Session $session |
When running the above example, you are prompted for credentials. Specify a domain user account that has been delegated permissions to administer the Lync Server 2010 environent, i.e. one of the default security groups CSAdministrator or RTCUniversalServerAdmins. When the session are successfully established all cmdlets in the remote session are imported to your local PowerShell-session. This is what`s called PowerShell implicit remoting.