Detección, habilitación y deshabilitación de SMBv1, SMBv2 y SMBv3 en Windows
Métodos de PowerShell
Estos son los pasos para detectar, deshabilitar y habilitar el cliente y el servidor SMBv1 mediante comandos de PowerShell.
Nota
El equipo se reiniciará después de ejecutar los comandos de PowerShell para deshabilitar o habilitar SMBv1.
Detectar:
PowerShellGet-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Desactivar:
PowerShellDisable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Habilite:
PowerShellEnable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Comentarios