У нас вы можете посмотреть бесплатно Add BlockedSenders or add BlockedSenderDomains to inbound anti spam policy(Default) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is a how-to video on how to add BlockedSenders or add BlockedSenderDomains to inbound anti-spam policy(Default)[https://security.microsoft.com/antispam]. For connections commands please see video on 'how to connect to ExchangeOnlineManagement with PowerShell' #To get a list of anti-spam filter policies; for this demonstration we will be working with the Default Policy Get-HostedContentFilterPolicy | Select-Object -Property Identity #To get information on BlockedSenders Get-HostedContentFilterPolicy -Identity "Default" | Select-Object -Property Identity, BlockedSenders | Format-List #To add a Blocked Sender or multiple Blocked Senders #Syntax for this command Set-HostedContentFilterPolicy -Identity "NAME OF POLICY" -BlockedSenders @{Add="Value1","Value2", …., "ValueN"} Set-HostedContentFilterPolicy -Identity "Default" -BlockedSenders @{Add="SOMEONE@gmail.com", "SOMEONE_ELSE@gmail.com", "USER@yahoo.com", "ANOTHER_PERSON@yahoo.com","USER1@hotmail.com"} #To check if the blocked senders were added Get-HostedContentFilterPolicy -Identity "Default" | Select-Object -Property Identity, BlockedSenders | Format-List #To get information on BlockedSenderDomains Get-HostedContentFilterPolicy -Identity "Default" | Select-Object -Property Identity, BlockedSenderDomains | Format-List #To add a domain to BlockedSenderDomains or multiple domains #Syntax for this command Set-HostedContentFilterPolicy -Identity "NAME OF POLICY" -BlockedSenderDomains @{Add="Value1","Value2"…, "ValueN"} Set-HostedContentFilterPolicy -Identity "Default" -BlockedSenderDomains @{Add="yahoo.com","gmail.com","hotmail.com"} #To check if the blocked domains were added Get-HostedContentFilterPolicy -Identity "Default" | Select-Object -Property Identity, BlockedSenderDomains | Format-List