This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Name DisplayName DisplayGroup Enabled Profile Direction Action | |
| ---- ----------- ------------ ------- ------- --------- ------ | |
| FileServer-ServerManager-SMB-TCP-In File Server Remote Management (SMB-In) File Server Remote Management True Any Inbound Allow | |
| FileServer-ServerManager-DCOM-TCP-In File Server Remote Management (DCOM-In) File Server Remote Management True Any Inbound Allow | |
| FileServer-ServerManager-Winmgmt-TCP-In File Server Remote Management (WMI-In) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #AzureAD preview module needed | |
| #Before install AzureADPreview module, uninstall AzureAD Module: Uninstall-Module -Name AzureAD -Force | |
| $groupname = "TEAMS-TeamCreation" | |
| Connect-AzureAD | |
| Get-AzureADGroup -SearchString $groupname | |
| $Template = Get-AzureADDirectorySettingTemplate | where {$_.DisplayName -eq 'Group.Unified'} | |
| $Setting = $Template.CreateDirectorySetting() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Attenzione prima di mettere in pausa gli aggiornamenti leggere qui: | |
| # https://www.kyoceradocumentsolutions.com/asia/en/about-us/press/20210317_news.html | |
| # | |
| # Defect Patch (March 9 Released) | |
| # Windows 10 Ver.20H2/2004 : KB5000802 | |
| # Windows 10 Ver.1909/1903 : KB5000808 | |
| # Windows 10 Ver.1803 : KB5000809 | |
| # Windows 10 Ver.1809 : KB5000822 | |
| # | |
| # Microsoft had released the countermeasure Patch on 18thMarch. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set execution policy | |
| $ExecutionPolicy = Get-ExecutionPolicy | |
| if ($ExecutionPolicy -ne "RemoteSigned") { | |
| Set-ExecutionPolicy RemoteSigned -Force | |
| } | |
| # Cleanup logs, change number of days as you want | |
| $days = 7 | |
| # Path of the logs to cleanup |
OlderNewer