Listen to this Post
The Microsoft Exchange Online “coding issue” continues to disrupt services for Outlook on the web users. As of 1:30pm EDT on Wednesday, March 19, Microsoft confirmed an ongoing outage preventing users from accessing their Exchange Online mailboxes. Thousands of reports on DownDetector indicate issues with logging into accounts, accessing the website, and server connection problems. Microsoft stated, “We’re investigating a potential issue with Exchange Online and checking for impact to your organization,” noting that the incident affects “any user attempting to access Outlook on the web.”
Read the full article on BleepingComputer: https://lnkd.in/erSu5bei
You Should Know:
If you’re managing Exchange Online or troubleshooting connectivity issues, here are some practical steps, commands, and codes to help you diagnose and resolve similar problems:
- Check Service Health in Microsoft 365 Admin Center:
– Log in to the Microsoft 365 Admin Center.
– Navigate to Health > Service Health to check for any ongoing incidents or advisories related to Exchange Online.
2. Test Connectivity Using PowerShell:
- Use the `Test-Connectivity` cmdlet to verify connectivity to Exchange Online:
Test-Connectivity -Server outlook.office365.com -Port 443
- This command checks if your system can reach the Exchange Online server.
3. Clear DNS Cache:
- If users are unable to access Outlook on the web, clearing the DNS cache might help:
- Windows:
ipconfig /flushdns
- Linux:
sudo systemd-resolve --flush-caches
4. Check Firewall and Proxy Settings:
- Ensure that your firewall or proxy isn’t blocking access to Exchange Online endpoints. Use the following command to test connectivity:
Test-NetConnection -ComputerName outlook.office365.com -Port 443
5. Verify Exchange Online URLs:
- Ensure that the required URLs for Exchange Online are whitelisted in your network configuration. Key URLs include:
– `outlook.office365.com`
– `autodiscover.outlook.com`
6. Restart the Microsoft Exchange Online Service:
- If you have administrative access, restart the Exchange Online service using PowerShell:
Restart-Service MSExchangeFrontEndTransport
7. Monitor Logs for Errors:
- Use the `Get-MessageTrackingLog` cmdlet to monitor message flow and identify errors:
Get-MessageTrackingLog -Start "03/19/2024 1:30 PM" -End "03/19/2024 2:30 PM" -EventId FAIL
8. Check for Updates:
- Ensure your Exchange Online environment is up to date. Use the following command to check for updates:
Get-ExchangeServer | Select Name, AdminDisplayVersion
What Undercode Say:
The Microsoft Exchange Online outage highlights the importance of proactive monitoring and troubleshooting in cloud-based environments. By leveraging PowerShell commands like Test-Connectivity, Test-NetConnection, and Get-MessageTrackingLog, administrators can quickly diagnose and address connectivity issues. Additionally, ensuring that DNS settings, firewalls, and proxy configurations are correctly configured can prevent similar disruptions. Always stay updated with Microsoft’s Service Health dashboard and maintain a robust incident response plan to minimize downtime. For further reading, refer to Microsoft’s official documentation on Exchange Online troubleshooting: Microsoft Exchange Online Documentation.
References:
Reported By: Charlescrampton The – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅



