agentrfr
Executive Member
FML spent like two hours trying to figure out why a newly reinstalled machine refused to connect to file sharing on my Pi across the network. Turns out windows disables samba (SMBv1) by default. Going into network and internet settings, hitting "sharing options" and enabling "turn on network discovery" and "turn on file and printer sharing" does nothing.
To fix:
Go to Settings
Apps -> Apps and Features
Programs and Features
Turn Windows Features on or off
Check the box for SMB1.0
Hit OK
Restart
Or you can use the PowerShell as admin
wtf microsoft????
To fix:
Go to Settings
Apps -> Apps and Features
Programs and Features
Turn Windows Features on or off
Check the box for SMB1.0
Hit OK
Restart
Or you can use the PowerShell as admin
Code:
Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
Set-SmbServerConfiguration –EnableSMB2Protocol $true
wtf microsoft????