New blog post 🚀
🔐 Find which certificate or client secret is actually being used in an Entra app registration. Useful when creds are expiring and there is no clear owner:
https://t.co/upEkYNGTrF
#PowerShell#EntraID#Azure#Microsoft
New blog post 🚀
📩 Report mail read/unread status in Exchange Online using a fast combo:
Message Trace V2 + Microsoft Graph.
⚡Code + CSV export:
https://t.co/obwvYLutko
#PowerShell#ExchangeOnline#MicrosoftGraph#M365Admin
New on the blog: TinyAddicts #3
🧾List all Microsoft 365 users without a license using a reliable Graph one-liner. Great for audits, cleanups, and catching missed assignments.
⚡Code + CSV export:
https://t.co/g2lKHAgGFs
#PowerShell#Microsoft365#GraphAPI#LicenseManagement
🚀New blog post
MC1197103 highlighted a common issue: legacy Exchange ActiveSync clients.
Here’s a PowerShell script to report outdated EAS devices in Exchange Online:
https://t.co/sTBUUH1W32
#PowerShell#ExchangeOnline#M365Admin
New blog post 🚀
How to report Entra ID authentication methods at scale using PowerShell & Microsoft Graph beyond what the portal shows:
https://t.co/P7TnABQ1lX
#PowerShell#EntraID#M365Admin
📅 Microsoft Bookings stopped working?
It might be an orphaned Scheduling Mailbox the original creator was deleted, and now nobody has access.
Here’s how to detect and fix⬇️
https://t.co/SIuFmWBR7U
#PowerShell#ExchangeOnline#Microsoft365#M365Admin#Bookings
On November 17, Microsoft announced the Exchange Admin API, a REST-based method of interacting with Exchange Online administrative functions.
This article dives into how the API works: https://t.co/d94ll72rkq
📬 New on the blog!
PowerShell script to generate a full Exchange Online mailbox report - size, quota, archive, forwarding, and holds.
Post here ⬇️
https://t.co/iKZwWd15wV
#PowerShell#ExchangeOnline#M365Admin
.@Office365 The October 2025 Update for the #Office365 for IT Pros eBook is available for download by subscribers. Please fetch the updated EPUB and PDF files to make sure that you're not using outdated information.
https://t.co/OOOiFuXQi0
#Microsoft365
💡 PowerShell Tip of the Day
Check who has access to a shared mailbox in #ExchangeOnline :
Get-MailboxPermission -Identity "[email protected]" | Where-Object { $_.AccessRights -contains "FullAccess" -and -not $_.IsInherited }
🔍 Lists explicit Full Access permissions.
🔑 New blog post!
Check shared mailbox permissions in #ExchangeOnline with #PowerShell:
✅ Full Access, Send As, Send on Behalf permissions
✅ User-accessible mailboxes
Script & guide ⬇️
https://t.co/uPBIElptgL
#M365Admin#Microsoft365
💡 PowerShell Tip of the Day
Need to find a specific folder in an Exchange Online mailbox? Run:
Get-MailboxFolderStatistics [email protected] | Where-Object {$_.Name -like "*Inbox*"}
🔍 Super handy when users claim folders are "missing".
#PowerShell#ExchangeOnline#M365Admin
Sometimes users report “missing folders” in Outlook. Instead of clicking through the client, you can quickly search mailbox folders with PowerShell.
Full guide + script here ⬇️
https://t.co/YqHdeEUjfw
#PowerShell#ExchangeOnline#M365Admin