Sometimes over slow connections we switch to an older version of the protocol. I'd like to be able to check and see which version is being used, I only know how to set the version ala:
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
sc.exe config mrxsmb20 start= disabled
How does one check the version of the protocol being used without using Powershell?
If you have Windows 8.1 or 2012, you can use the PowerShell cmdlet
Get-SmbConnection
for that.To interpret the answer (copied and pasted from here):
Sample output:
If you don't, perhaps this related question will help:
You can check the status of the SMB 1/2 services, as seen here:
? In PowerShell, you will need to use
sc.exe
instead ofsc
!