Koozali.org: home of the SME Server
Obsolete Releases => SME Server 9.x => Topic started by: joost on December 30, 2019, 09:18:14 PM
-
Hi,
When adding a Window 10 client to SME Server 9 the following didn;t work for me: https://wiki.contribs.org/Windows_10_Support
Adding the Win10 registry patch (win10samba.reg) did nothing. I solved this with the following steps:
On the windows client:
Start Powershell:
Powershell
Run as superuser:
start-process powershell –verb runAs
Check Client settings:
Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
Enable SMB1:
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All
If you want to disable it:
Disable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
Source: https://winaero.com/blog/enable-smb1-sharig-protocol-windows-10/
Hope I helped someone.
-
That should go on the Wiki....
Nice work