Some notes on (temporarily) using CIFS/SMBv1 with Windows 10
Posted by jpluimers on 2022/06/13
Warning: only do this in a well confined network because of the SMBv1 has serious security implications!
Temporarily allowing SMBv1 makes it easier to transfer files from/to ancient Windows XP (virtual) machines.
Sometimes you need those to support hardware for which more modern drivers or support do not exist.
20220811 added links as somehow they were not published
- [Wayback/Archive] windows 10 access smb1 share – Google Search
- [Wayback/Archive] [Network] SMB1 Sharing Protocol on Windows 10 – Ideas Proposals for New Features / Idées et suggestions
Also, you can activate it using this process :
- Click on the Start menu
- Type
cmd
to find the command prompt - Right click on “
Command Prompt
“ - Select “
Run as administrator
“ - Type the following command :
DISM /Online /Enable-Feature /All /FeatureName:SMB1Protocol
- Confirm
- [Wayback/Archive] How to access files on network devices using SMBv1 on Windows 10 | Windows Central (only GUI steps)
- [Wayback/Archive] [SOLVED] Windows 10 file sharing issue with Windows XP
Thanks for the replies. NicCrockett- You are correct in saying that the system is a legacy piece of hardware that controls a specialized machinery that isn’t easily upgradeable. I found what the issue was. Earlier when I had check if SMB was enabled via a Powershell command it confirmed that the client side of SMB v1 was enabled. What I failed to realize at the time was that the server side of SMB was not enabled. Once I enabled SMBv1.(Server-side) via Windows features, everything worked fine.
- [Wayback/Archive] You cannot access shared files and folders or browse computers in the workgroup with Windows XP
- [Wayback/Archive] install “SMB 1.0/CIFS Client” feature using console “CapabilityName” – Google Search
- [Wayback/Archive] How to Enable SMB on Windows 10 – Windows Bulletin Tutorials (only has GUI steps)
- [Wayback/Archive] Topic: 1809 and SMBv1 – Still not fully fixed in 20H2 @ AskWoody
- [Wayback/Archive] “Add-WindowsCapability” “CIFS Client” – Recherche Google
- [Wayback/Archive] Microsoft Hyper-V Server 2019 – RD Virtualization Host feature missing
- [Wayback/Archive] “FS-SMB1-CLIENT” – Google Search
- [Wayback/Archive] “FS-SMB1-CLIENT” “WindowsFeature” “Windows 10” – Google Search
- [Wayback/Archive] SMB 1.0 on Server 2019 – “The Source Files could not be found” : sysadmin
this worked for me on a lab VM of Win2019 Core:Install-WindowsFeature FS-SMB1, FS-SMB1-CLIENT, FS-SMB1-SERVER
idk if you need both the SMBv1 client and server though - [Wayback/Archive] Cannot install “SMB 1.0/CIFS File Sharing Support” role on server 2019 data center.
Install-WindowsFeature FS-SMB1 -Source wim:e:\sources\install.wim:4
e:\
being the mounted drive that contain a copy of windows image.ensure that you run the wim command to find out what index you should use.In my case I had to use 4 since the version of windows that I have was datacenter with Desktop environment.I believe my problem was the fact that I was using the wrong name “smb1protocol
” instead of “FS-SMB1
“if you are reading this thread but you are trying to install a different service run a the below in powershell to get the correct service name:Get-WindowsFeature
NOTE: It takes some time for it to executeIMPORTANT NOTE: the service names are case sensitive! - [Wayback/Archive] azure-docs.nl-nl/storage-how-to-use-files-windows.md at master · MicrosoftDocs/azure-docs.nl-nl
- [Wayback/Archive] azure-docs/storage-how-to-use-files-windows.md at main · MicrosoftDocs/azure-docs
- [Wayback/Archive] azure-docs/storage-how-to-use-files-windows.md at master · MicrosoftDocs/azure-docs
- [Wayback/Archive] “CapabilityName” “SMB” – Recherche Google
- [Wayback/Archive] Deshabilitar SMBv1 (y 2) por Powershell en Win10 (y Win7) – Notas Informáticas (on disabling both SMBv1 and SMBv2 in Windows 10 and Windows 7)
- [Wayback/Archive] install Server Core FoD package on Server 17744 – Microsoft Tech Community
I found the solution:
add-windowscapability -name "ServerCore.AppCompatibility~~~~0.0.1.0" -online -LimitAccess -source e:\
did the job. - [Wayback/Archive] Can I connect to Windows machine from Linux shell?
- [Wayback/Archive] windows xp image backup – Google Search
- [Wayback/Archive] How to Back Up Windows XP: 8 Steps (with Pictures) – wikiHow
–jeroen
Leave a Reply