Problem:

The Clients cannot found in the Networklist from custo diagnostic, the connection is not possible


Error.log Entry from custo diagnostic:

VERIFY #7321: 27.03.2020 13:31:12,997 (970913687) V.4.6.13 am PC 'WORKSTATION3:doc:0' Key:103574 B:10,0,2,18363 P:9436

WsEnum.cpp, 249

CmsWsEnum

'FALSE' ist FALSE

Microsoft Windows Network failed with code 2184;

Der Dienst ist nicht gestartet worden.


Question: What is the Microsoft Windows Network failed with code 2184?

Answere: This is the SMB1 from Windows 10

Solution:

Activate this Service:


Enable or disable the SMB1 protocol in Windows 10 using PowerShell

  1. Open PowerShell as Administrator.Tip: You can add "Open PowerShell As Administrator" context menu
  2. Type or copy-paste the following command:
    Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"

    It will show if you have the SMB1 protocol enabled or not.PowerShell Get SMB1 State

  3. To enable the feature, run the command
    Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All
  4.  After Restart the PC


Reference: https://winaero.com/blog/enable-smb1-sharig-protocol-windows-10/

  • No labels