Powershell Remoting with Lync Online

Hallo zusammen,

Ich habe mir mal angeschaut, wie man mit der Powershell auf Lync Online zugreifen kann. Dazu muss man das Windows PowerShell Module für Lync Online installieren.

Windows PowerShell Module for Lync Online
http://www.microsoft.com/en-us/download/details.aspx?id=39366

Danach kann man eine Remote PowerShell Session auf Lync Online herstellen

$cred = Get-Credential
$lyncSession = New-CsOnlineSession -Credential $cred
Import-PSSession $LyncSession
Remove-PSSession $LyncSession

Eine Dokumentation der Lync Online Commandlets gibt es hier

Lync Online cmdlets
https://technet.microsoft.com/en-us/library/jj994021.aspx

Grüsse
Andres Bohren