Forum Discussion

JoaoManoel-OJC's avatar
JoaoManoel-OJC
Copper Contributor
Oct 08, 2021
Solved

How do I copy allow and block lists from one O365 Defender policy

I tried this command to extract
Get-HostedContentFilterPolicy -Identity Default | Select-Object -Property AllowedSenderDomains | Out-File -FilePath C:\Users\myuser\Documents\Sender.txt

file does not contain all addresses
through the terminal the output is incomplete

  • Try
    Select-Object -ExpandProperty AllowedSenderDomains
    instead
    • JoaoManoel-OJC's avatar
      JoaoManoel-OJC
      Copper Contributor

      VasilMichev 

       

      I am grateful for your help!
      the command with the ExpandProperty property viewed all the content within the array

Resources