Line 18:
Line 18:
*You have to reboot your computer to reach the domain
*You have to reboot your computer to reach the domain
−
== Using PowerShell ==
+
'''Using PowerShell'''<br>
As seen on https://forums.contribs.org/index.php/topic,54125.0.html there are another way (maybe both are needed - need verification):
As seen on https://forums.contribs.org/index.php/topic,54125.0.html there are another way (maybe both are needed - need verification):
Start Powershell:
Start Powershell:
−
+
Powershell
−
<code>Powershell</code>
Run as superuser:
Run as superuser:
−
+
start-process powershell –verb runAs
−
<code>start-process powershell –verb runAs</code>
Check Client settings:
Check Client settings:
−
+
Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
−
<code>Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"</code>
Enable SMB1:
Enable SMB1:
−
<code>Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All</code>
+
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All
If you want to disable it:
If you want to disable it:
−
<code>Disable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"</code>
+
Disable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
Source: <nowiki>https://winaero.com/blog/enable-smb1-sharig-protocol-windows-10/</nowiki>
Source: <nowiki>https://winaero.com/blog/enable-smb1-sharig-protocol-windows-10/</nowiki>