Enable SMBv1 for Windows 10

I don't understand this question. Are you trying to remove SMB1 components, or enable SMB1 for client (or server) support?
 
I want enable SMP 1.0 client,server, A.removal in ntlite. but the windows 10 installer dont enable it. (not selected in Turn W. feature on or off)
 

Attachments

  • Képernyőkép 2024-03-15 233824.png
    Képernyőkép 2024-03-15 233824.png
    5.2 KB
To enable SMB1 support in W10:
1. Don't remove SMB1 under Components!

2. From Features, search on the toolbar for "SMB". Check the following boxes (this will switch Disabled -> Enabled).
Don't check CIFS Automatic Removal, which will remove SMB1 support if you don't use it regularly.

1710544830484.png
 
Yes. But when I finish windows 10 install. And See it in not selected in Turn W. feature on or off. Only clien is selected


all 3 functions still worked in the December 2022 ntlite.
SMB CIF Automatic removal - SMB CIF Client - SMB CIF server

I bought it but rarely use it.
I don't do windows every month, only in December.
Will it be fixed in the next version?
 
I don't see a problem when using NTLite v2024.3.9796, on a clean W10 image. We can check DISM with a PowerShell command, after loading the image in NTLite and exiting without an unload.

Clean image before changes:
Code:
Get-WindowsOptionalFeature -Path C:\Users\GARLIN\AppData\Local\Temp\NLTmpMnt -FeatureName *SMB* | select DisplayName,State

SMB Direct                         Enabled
SMB 1.0/CIFS File Sharing Support Disabled
SMB 1.0/CIFS Client               Disabled
SMB 1.0/CIFS Server               Disabled
SMB 1.0/CIFS Automatic Removal    Disabled

After updating SMB 1.0 Features, using the checkboxes:
Code:
Get-WindowsOptionalFeature -Path C:\Users\GARLIN\AppData\Local\Temp\NLTmpMnt -FeatureName *SMB* | select DisplayName,State

SMB Direct                         Enabled
SMB 1.0/CIFS File Sharing Support  Enabled
SMB 1.0/CIFS Client                Enabled
SMB 1.0/CIFS Server                Enabled
SMB 1.0/CIFS Automatic Removal    Disabled

If you're not getting the same results on install, please check the correct install image is being used.
 
Back
Top