Exchange Online PowerShell
Version vom 19. Juni 2015, 13:07 Uhr von MWorschech (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „<syntaxhighlight lang=powershell>$UserCredential = Get-Credential</syntaxhighlight> <syntaxhighlight lang=powershell>$Session = New-PSSession -ConfigurationNa…“)
<syntaxhighlight lang=powershell>$UserCredential = Get-Credential</syntaxhighlight>
<syntaxhighlight lang=powershell>$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection</syntaxhighlight>
<syntaxhighlight lang=powershell>Import-PSSession $Session</syntaxhighlight>
<syntaxhighlight lang=powershell>Remove-PSSession $Session</syntaxhighlight>