windows 10 smb1 not working
#In Windows 10 PowerShell: Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Here is what the above code is Doing:
1. Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
This command will return the status of the SMB1Protocol feature.
2. Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
This command will enable the SMB1Protocol feature.
3. Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
This command will disable the SMB1Protocol feature.