Monthly Archives: October 2015
Set-ExecutionPolicy RemoteSigned $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session
(via https://www.youtube.com/watch?v=tcXU7G6zhjU) (Source: https://www.youtube.com/)
Office 365 support.
Request: this thing is broken, please fix it really quickly. Microsoft: I am emailing you to let you know my self and these other 5 people will be involved and our supervisor is this other guy. I will call you to discuss your issue soon. Microsoft calls: I am calling you about your issue, I …
If you need to enable Office 365 Archive for all users: Get-Mailbox -Filter {ArchiveStatus -Eq “None” -AND RecipientTypeDetails -eq “UserMailbox”} | Enable-Mailbox -Archive If you need to enable Office 365 Litigation hold for all users: Get-Mailbox | Set-Mailbox -LitigationHoldEnabled $true -LitigationHoldDuration 2555 Remove “ -LitigationHoldDuration 2555″ to retain forever or change number for days to …