dimanche 13 juin 2021

#PowerShell #Firewall #bureau #distant #windows

www.editions-eni.fr/open/mediabook.aspx?idR=3f85478d503f511a14d48f9ed4a0f9a0

www.hebergementwebs.com/windows/configurer-le-pare-feu-de-windows-defender-en-powershell

www.it-connect.fr/chapitres/gerer-le-pare-feu-en-powershell/

techexpert.tips/fr/windows-fr/windows-bloquer-ladresse-ip-a-laide-de-la-ligne-de-commande/

PS C:>Get-Command -Module NetSecurity

Vérifier l'état du parefeu

netsh advfirewall show allprofiles

Désactivation du parefeu

powershell

PS C:>Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False

Commande

net stop mpssvc

netsh advfirewall set allprofiles state off

Activation du parefeu

powershell

PS C:\> Set-NetFirewallProfile -Profile Domain, Public, Private -Enabled True

Commande

net start mpssvc

netsh advfirewall set allprofiles state on


# Activer le bureau à distance

PS C:>Set-ItemProperty -Path ‘HKLM:\System\CurrentControlSet\Control\Terminal Server’`

-name “fDenyTSConnections“ -Value 0

# Désactiver la connexion sécurisée au bureau à distance

PS C:>Set-ItemProperty -Path ‘HKLM:\System\CurrentControlSet\Control\`

Terminal Server\WinStations\RDP-Tcp’ -name “UserAuthentication” -Value 0


Aucun commentaire:

Enregistrer un commentaire

Archives du blog