Currently I'm testing 2 different file shares on 2 different servers
This is what mount command shows:
[Expert@gw1:0]# mount
//192.168.1.23/fs on /opt/CPcvpn-R80/mnt/cvpn_mnt/ml24 type cifs (rw,mand)
//192.168.1.53/test on /opt/CPcvpn-R80/mnt/cvpn_mnt/ml25 type cifs (rw,mand)
.. (rest omitted)
Share //192.168.1.23/fs is on Windows Server 2008 R2 Enterprise (64-bit)
C:\Users>sc.exe qc lanmanworkstation
[SC] QueryServiceConfig SUCCESS
SERVICE_NAME: lanmanworkstation
TYPE : 20 WIN32_SHARE_PROCESS
START_TYPE : 2 AUTO_START
ERROR_CONTROL : 1 NORMAL
BINARY_PATH_NAME : C:\Windows\System32\svchost.exe -k NetworkService
LOAD_ORDER_GROUP : NetworkProvider
TAG : 0
DISPLAY_NAME : Workstation
DEPENDENCIES : Bowser
: MRxSmb10
: MRxSmb20
: NSI
SERVICE_START_NAME : NT AUTHORITY\NetworkService
and no SMB key in HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
And Share //192.168.1.53/test is on Windows Server 2016 Datacenter (64-bit)
According to docs.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-s...
PS C:\Users> Get-WindowsFeature FS-SMB1
Display Name Name Install State
------------ ---- -------------
[X] SMB 1.0/CIFS File Sharing Support FS-SMB1 Installed
And
PS C:\Users> Get-SmbServerConfiguration | Select EnableSMB2Protocol
EnableSMB2Protocol
------------------
True
Thank You very much
Mirek