202202s

Get/Set-PhishFilterPolicy will be soon replaced with Tenant Allow Block list

Andres Bohren
Hi All, Recently there was an Annoucement in the M365 Message Center that announced the depreciation of the Get/Set-PhishFilterPolicy. Move to the new Commands Get-TenantAllowBlockListSpoofItems New-TenantAllowBlockListSpoofItems Set-TenantAllowBlockListSpoofItems Remove-TenantAllowBlockListSpoofItems The Get-PhishFilterPolicy will soon be depreciated Get-PhishFilterPolicy | ft Sender, SpoofedUser, NumberOfMessages, DecisionSetBy, AllowedToSpoof, SpoofType To see only the entrys, that are allowed to Spoof Get-PhishFilterPolicy | where {$_.AllowedToSpoof -eq "Yes"} | ft Sender, SpoofedUser, NumberOfMessages, DecisionSetBy, AllowedToSpoof, SpoofType Instead use this Command now

Outlook Editor Options Paste Text only

Andres Bohren
Hi All, As many of you i use a lot of Copy & Paste when creating Emails. By default, the Format of the Source will be used - but did you know that you can change that? These are the default Settings If you select and copy a few Lines from a Website This will happen - and you need to use the Paste Context Menu to select "Text only"

Azure Cost Management anomaly detection Preview

Andres Bohren
Hi All I have tested the Azure Cost Management anomaly detection Preview. Public preview: Cost Management anomaly detection for subscriptions https://azure.microsoft.com/en-us/updates/preview-cost-management-anomaly-detection-for-subscriptions-2/ Regards Andres Bohren

Export Azure SQL database and import on local SQL Server

Andres Bohren
Hi All, In this Blog Article i show how you can Export an Azure SQL Database and import it back on your local SQL Server In the Azure Portal go to your SQL database and hit "Export" You need to set the Storage Target for your Export I create a new container at my Storage Account Once the export starts it takes a while until the Data is exportet Wait until its completed

Install SQL Server Management Studio (SSMS)

Andres Bohren
Hi All, In my previous Article i have explained how to install SQL Server 2019 Express Edition. That comes without a Management Interface - therefore we need Install SQL Server Management Studio (SSMS) Download SQL Server Management Studio (SSMS) https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?redirectedfrom=MSDN&view=sql-server-ver15 Now it can be found in the Start Menü You will be welcomed with the Splash Screen Then you have to Select your SQL DB Instance Or you can Browse for DB's on your Server or Network

Sending "Reset Password" Links may be considered as phishing in Exchange Online

Andres Bohren
Hi All, A few Weeks ago i received the Mail below that was filtered out as Junk-E-Mail. So i took a closer look as it is legitimate. It contained a "Forgot Password" Link to theyr Portal. These are classic Phishing Techniques- I took a look at the Mailheaders with the Message Header Analyzer https://mha.azurewebsites.net/ As you can see the Spam Confidence Level (SCL) is high at 5 and it's classified also as spam (SPM).

SQL Server 2019 Express Installation

Andres Bohren
Hi All, For a Project, i have installed SQL Server 2019 Express. Here are the Screenshot from the Installation. Editions and supported features of SQL Server 2019 (15.x) https://docs.microsoft.com/en-us/sql/sql-server/editions-and-components-of-sql-server-version-15?view=sql-server-ver15 https://www.microsoft.com/de-ch/sql-server/sql-server-downloads I choose "custom" to see all the Settings Here is where you would normally choose to place the Data on a diffrent Drive. As this is only a Test System i won't do that. Let's see if we can connect

Exchange Online Litigation Hold an Licensing

Andres Bohren
Hi All, I've recently had to deal with Litigation Hold. So i did a bit of research. Place a mailbox on Litigation Hold https://docs.microsoft.com/en-us/exchange/policy-and-compliance/holds/litigation-holds?view=exchserver-2019 When a mailbox is placed on Litigation Hold, items in the Purges subfolder are preserved for the hold duration specified by the Litigation Hold. The hold duration is calculated from the original date an item was received or created, and defines how long items in the Purges subfolder are held.

Microsoft Teams returns Shared Mailbox in Search

Andres Bohren
Hi All, I was wondering why teams Search shows some SharedMailboxes and some not. For Example: There are two Shared Mailboxes "SharedForward" and "SharedForwardSMTP" that can be found over Teams Searchbar on Top (does not matter if Teams Web or Teams for Windows). The fun part is, that you can even send a chat message or call them On the other hand there is a Shared Mailbox Postmaster - that shows no result when searching

MicrosoftTeams PowerShell Module 3.2.0 Preview released

Andres Bohren
Hi All, A few Days ago, Microsoft has released the MicrosoftTeams PowerShell Module v3.2.0 Preview to the PSGallery. Here are the Release notes https://docs.microsoft.com/en-us/MicrosoftTeams/teams-powershell-release-notes Find-Module -Name MicrosoftTeams -AllowPrerelease Install-Module -Name MicrosoftTeams -AllowPrerelease -Force Let's see how long it takes to load the Module. It's about the same as with the Microsoft Teams PowerShell 3.1.1 Measure-Command -Expression {Import-Module MicrosoftTeams} Get-Module My usual Tests Connect-MicrosoftTeams Get-Team Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*, *host*, *voice*, *um* Regards Andres Bohren