Microsoft is implementing significant updates to the retention policies for OneDrive, aimed at enhancing data management and compliance. These changes may impact how long files are retained and the processes for data recovery. It’s essential for organizations and users to review the updates to ensure alignment with their storage and compliance needs.
Safeguard Your Business with Microsoft 365’s Impersonation Protection
In today's digital landscape, safeguarding your business from cyber threats is more critical than ever. Microsoft 365's Impersonation Protection offers advanced security measures designed to protect your organization from phishing attacks, fraudulent emails, and other impersonation tactics. With features like real-time threat detection, automated alerts, and robust email filtering, Microsoft 365 ensures that your business communications remain secure and your sensitive information stays out of the hands of cybercriminals. Discover how leveraging this powerful tool can provide peace of mind and fortify your business against ever-evolving digital threats.
External User Sending to Distribution Group With External Domain Recipients
Issue: When an external user is sending an email to a distribution group which consists of both internal and external users. Emails to internal users get delivered but fails to be delivered to external members of the group. Sometimes the sender doesn't even get NDR as they might not have been enabled. You can always... Continue Reading →
Script To Get A List Of All Mailboxes Along with All its Email Aliases
Connect to Exchange Online $UserCredential = Get-Credential$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://outlook.office365.com/powershell-liveid/ -Authentication Basic -AllowRedirection:$true -Credential $UserCredentialImport-PSSession $Session -DisableNameChecking:$true -AllowClobber:$true | Out-Null Get all Exchange Online users $AllUsers = Get-Mailbox -ResultSize Unlimited Iterate through each user and retrieve email address aliases foreach ($User in $AllUsers) {$UserPrincipalName = $User.UserPrincipalName$PrimarySMTP = $User.PrimarySmtpAddress$EmailAliases = $User.EmailAddresses # Output... Continue Reading →
The ACE doesn’t exist on the object Mailbox Permissions
If you have recently upgraded from exchange 2013 or older to 2016/2019, you might experience the following when you try to remove mailbox permissions using exchange PowerShell. It will let you remove the permissions using exchange admin centre without any error sometimes but when you go back to check the permissions, you will notice that... Continue Reading →