Turning Off SMBv1 on IP100 Series, 1100/1200ACS and Servers

This document details how to turn off the SMBv1 protocol in the Windows operating system. SMBv1 has several security vulnerabilities which can allow ransomware, such as the WannaCry ransomware, to infect your computer. By disabling SMBv1, your windows machine can be protected from these sorts of attacks without losing any functionality. For more details and methods to disable SMBv1, see the Microsoft article here:  https://support.microsoft.com/en-us/help/2696547/how-to-enable-and-disable-smbv1-smbv2-and-smbv3-in-windows-and-windows-server.

Windows 7, Windows Server 2008 R2,
Windows Vista, and Windows Server 2008

  1. Open the start menu and search for “Windows PowerShell”
  2. Type the following command and press enter:
    Set-ItemProperty –Path “HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters” SMB1 –Type DWORD –Value 0 –Force
  3. Restart the computer

Windows 8 and Windows Server 2012

  1. Open the start menu and search for “Windows PowerShell”
  2. Type the following command and press enter:
    Set-SmbServerConfiguration –EnableSMB1Protocol $false