SMBv1
1 TopicDisable SMBv1
Hello, I'm in the process of disabling SMBv1 for large scale servers. I made a script for this, and this results that SMBv1 on registry and feature level is almost disabled or does not exist everywhere. However, when I run the following command "Get-SmbServerConfiguration | Select EnableSMB1Protocol", this results that SMBv1 is set to True. I can't really gauge if everything is really off now. Because when I run the commands below, it's off. Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol Get-Item HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters | ForEach-Object {Get-ItemProperty $_.pspath} But when I run this command it result that its on. Get-SmbServerConfiguration | Select EnableSMB1Protocol I know how to disable this, but what exactly is the difference? And is it really still on? Hopefully someone can enlighten me on this? Thanks in advance21KViews0likes8Comments