How to enable SMB Machine 3

Russell Matt 21 Reputation points
2020-10-14T06:48:23.847+00:00

As I mentioned in the title, I want to know how to enable SMB machine 3 on Windows sever 2012 R2.

Any help will be appreciated.

Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,599 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,228 questions
{count} votes

Accepted answer
  1. Sunny Qi 11,051 Reputation points Microsoft Vendor
    2020-10-14T09:41:38.007+00:00

    Hi @Russell Matt ,

    Thanks for your feedback.

    You can use Powershell command below to check if SMBv3 enabled in windows server 2012 R2

    Get-SmbServerConfiguration | Select EnableSMB2Protocol

    To check if Encryption is enabled on server level, run below command:

    Get-SmbServerConfiguration | Select EncryptData

    To check if Encryption is enabled for individual file share, run below command:

    Get-SmbShare -Name <sharename> | Select EncryptData

    For more details regarding SMB security enhancements, please refer to the following article:

    SMB security enhancements

    Hope my answer will help you.

    Best Regards,
    Sunny

    ----------

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Leon Laude 85,816 Reputation points
    2020-10-14T06:58:08.957+00:00

    Hi @Russell Matt ,

    You can follow the guide provided in the official Microsoft documentation over here:

    How to detect, enable and disable SMBv1, SMBv2, and SMBv3 in Windows
    https://learn.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3

    To enable SMBv2 and SMBv3 on a Windows Server 2012 R2 server, run the following PowerShell command:

    Set-SmbServerConfiguration -EnableSMB2Protocol $True  
    

    ----------

    (If the reply was helpful please don't forget to upvote or accept as answer, thank you)

    Best regards,
    Leon

    0 comments No comments

  2. Sunny Qi 11,051 Reputation points Microsoft Vendor
    2020-10-14T07:31:20.68+00:00

    Hi,

    Thanks for posting in Q&A platform.

    Before we go further, may I know if your goal is to enable SMB3 on particular machine(s). If there is any misunderstanding. Please feel free to let me know.

    As a quick answer, to enable SMB2 and SMB3 on Windows 8, Windows 8.1, Windows 10 and Windows Server 2012 and later versions, you can use below Powershell command:

    Set-SmbServerConfiguration –EnableSMB2Protocol $true

    Please kindly notice that SMB3 will be enabled together with SMB2. When SMB client and server do SMB negotiation, only the highest version of SMB Dialect will be chosen.

    And you must restart the computer after you make these changes.

    Hope my answer will help you!

    Best Regards,
    Sunny

    ----------

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

  3. Russell Matt 21 Reputation points
    2020-10-14T08:22:14.523+00:00

    Thank you all for your quick help. Another question, how to confirm that SMBv3 enabled and encryption is turned on in windows server 2012 R2? Thanks in advance!


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.