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

Title: Adding a Window 10 client to SME Server 9
Post 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:
Code: [Select]
Powershell
Run as superuser:
Code: [Select]
start-process powershell –verb runAs

Check Client settings:
Code: [Select]
Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"

Enable SMB1:
Code: [Select]
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All
If you want to disable it:
Code: [Select]
Disable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
Source: https://winaero.com/blog/enable-smb1-sharig-protocol-windows-10/

Hope I helped someone.
Title: Re: Adding a Window 10 client to SME Server 9
Post by: ReetP on January 01, 2020, 07:07:57 PM
That should go on the Wiki....

Nice work