Chris Davis

Results 44 comments of Chris Davis

Checking. I changed the Setting and Settings parameter descriptions to "reserved for internal Microsoft use" back at the end of March per product team feedback (they were previously empty).

@dkotars, the quarantine policy AdminOnlyAccessPolicy does not have quarantine notifications turned on, so you would need a custom quarantine policy assigned to the anti-malware policy that duplicates AdminOnlyAccessPolicy, but with...

@dkotars, Using the [PowerShell procedures that I recently documented for preset security policies](https://docs.microsoft.com/microsoft-365/security/office-365-security/preset-security-policies#use-powershell-to-view-individual-security-policies-for-preset-security-policies), and the [recommended settings](https://docs.microsoft.com/microsoft-365/security/office-365-security/recommended-settings-for-eop-and-office365#eop-anti-malware-policy-settings) topic, it appears that the quarantine policy that's used in both Standard and...

@dkotars, be advised that a [pull request](https://github.com/MicrosoftDocs/microsoft-365-docs/pull/9391/files) just came from the PM that says the new default for reject with NDR vs. quarantine for the common attachments filter is now...

@jhuettner, I would contend that much of that is already covered in the companion procedural topic to this conceptual topic: [Configure anti-spam policies in EOP](https://docs.microsoft.com/microsoft-365/security/office-365-security/configure-your-spam-filter-policies). Granted, the specific example of...

@jhuettner, does this work? ```powershell $x = Get-HostedContentFilterPolicy $x | foreach {write-host ("`r`n"*3)$_.Name,`r`n,("="*79),`r`n,"Allowed Senders"`r`n,("-"*79),`r`n,$_.AllowedSenders,("`r`n"*2),"Allowed Sender Domains",`r`n,("-"*79),`r`n,$_.AllowedSenderDomains,("`r`n"*2),"Blocked Senders"`r`n,("-"*79),`r`n,$_.BlockedSenders,("`r`n"*2),"Blocked Sender Domains",`r`n,("-"*79),`r`n,$_.BlockedSenderDomains} ```

@jhuettner, I'm going with what I have as far as the example. Regarding the MatchSubDomains property, if there isn't a corresponding parameter in the New- or Set- cmdlet, then there's...

@aldoug, from [this article](https://docs.microsoft.com/microsoft-365/security/office-365-security/preset-security-policies#preset-security-policies-in-exchange-online-powershell), this command: ```powershell Write-Output -InputObject ("`r`n"*3),"Built-in protection Safe Attachments policy",("-"*79);Get-SafeAttachmentPolicy -Identity "Built-In Protection Policy" | Format-List; Write-Output -InputObject ("`r`n"*3),"Built-in protection Safe Links policy",("-"*79);Get-SafeLinksPolicy -Identity "Built-In Protection...

No contrary information, so I'm closing the issue. Thanks for the feedback.