User Tools

Site Tools


programmazione:connessione_a_office365

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

programmazione:connessione_a_office365 [15/04/2020 04:35] – external edit 127.0.0.1programmazione:connessione_a_office365 [20/12/2021 07:45] (current) lrosa
Line 1: Line 1:
 +====== Connessione a Office365 con PowerShell ======
  
 +  $credentials = Get-Credential
 +  Write-Output "Getting the Exchange Online cmdlets"
 +  $Session = New-PSSession -ConnectionUri https://outlook.office365.com/powershell-liveid/ -ConfigurationName Microsoft.Exchange -Credential $credentials -Authentication Basic -AllowRedirection
 +  Import-PSSession $Session