<4 January 2025>
Many Microsoft 365 settings can be configured quickly via PowerShell. No endless clicking through menus, just efficient commands. At Brandaris Cybersecurity, we apply these steps by default in every environment. Why? Because they make your organisation safer and help employees work smarter.
<Step 1>
Install-Module -Name ExchangeOnlineManagement -Scope CurrentUser -Force
<Step 2>
Connect-ExchangeOnline -UserPrincipalName youradmin@domain.com
<Step 3>
<Step 4>
Disconnect-ExchangeOnline -Confirm:$false
Set-OwaMailboxPolicy -Identity "OwaMailboxPolicy-Default" -AdditionalStorageProvidersAvailable $false
Outlook Web App allows links to external storage services. Convenient, but messy. Files end up outside your control.
Everything stays within your managed environment. Less risk, more clarity.
Set-OrganizationConfig -MailTipsAllTipsEnabled $true ` -MailTipsExternalRecipientsTipsEnabled $true ` -MailTipsGroupMetricsEnabled $true ` -MailTipsLargeAudienceThreshold 25
People make mistakes. Sending sensitive info externally or emailing hundreds of colleagues unintentionally? MailTips warns you before you hit “Send”.
Employees become more aware without extra rules. The system helps prevent errors and reduces noise.
Set-OrganizationConfig -AuditDisabled $false
Without logging, you’re blind. Auditing records actions so you can trace what happened.
Peace of mind and compliance. Not for control, but for clarity when questions arise.
Get-Mailbox -ResultSize Unlimited | ForEach-Object { Write-Host "Enable for: $($_.PrimarySmtpAddress)" Set-Mailbox -Identity $_.Identity -AuditEnabled $true}
Sometimes you need to know what happened in one mailbox. This makes it possible.
Full transparency. Essential for compliance and investigations.
<How is your Exchange Online configured?>
You’ll barely notice them day-to-day, but they help employees work smarter and keep your organisation secure.
<cybersecurity consultant>