Monthly Archives: April 2013

Powershell Command to administrator Office 365

copy & paste ############### $Cred=Get-Credential Connect-MSOLService -Credential $cred $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic -AllowRedirection Import-PSSession $Session Close out session: Remove-PSSession $Session ############### List user properties Get-MsolUser -UserPrincipalName <login name> | FL ############### Set Password to … Continue reading

Posted in Office 365 | Leave a comment