Articles I've written for customers on IT issues.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
708 B

4 years ago
  1. issue was:
  2. net share from Windows 10 to windows XP failed to work, out of the blue
  3. two ways to solve this:
  4. via gui:
  5. control panel - add remove programs - add remove windows features
  6. (note that win server puts the add remove windows features in that server gui page)
  7. enable this and the two children
  8. SMB 1.0/CIFS File Sharing Support
  9. - SMB 1.0/CIFS Client
  10. - SMB 1.0/CIFS Server
  11. via cmd line:
  12. Set-SmbServerConfiguration -EnableSMB1Protocol $false
  13. of interest to note is that WinXP suddenly stopped being able to see the share
  14. no immediate / visible error message that indicated the root of the problem
  15. based on my knowledge and experience, I was able to determine the SMB1.0 resolution.