Manually configure Outlook for Office 365 Exchange Online

Manually configure Outlook for Office 365 Exchange Online

For many reasons, you might want to manually configure Outlook to work with Office 365.

Here are some obstacles you may encounter:

  • You don’t have the Office 365 Sign-in assistant available.
  • No Autodiscover record published.
  • You’re working on Outlook 2003

 This link shows you how to do it:

PowerShell Script to set all passwords to be the same in Office365

Create a CSV file with the following format: UPN,Password mary@mycompany.ie,Ireland1002* save it as resetuserpassword.csv $LiveCred = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection Import-PSSession $Session Connect-Msolservice Import-CSV “c:\users\pgilbride\desktop\resetuserpassword.csv” | foreach {Set-MsolUserPassword -userPrincipalName $_.UPN -NewPassword $_.Password -ForceChangePassword $false1} Obviously change the location above (in bold) to be that of yourContinue reading “PowerShell Script to set all passwords to be the same in Office365”