Phil Preen
Phil Preen

Reputation: 638

Error connecting to Azure File Share from Windows 10 PC

I am getting similar problem to that described here and other places:

Cannot connect to Azure File Share

but in my case it doesn't appear to be related to Port 445 being blocked. Test-NetConnection with port 445 works OK, and returns an IP address.

Credentials are stored using CmdKey, but I cannot access the share in Window explorer using the UNC path, and New-PSDrive returns an error:

New-PSDrive : The network resource type is not correct

Upvotes: 2

Views: 1431

Answers (1)

Phil Preen
Phil Preen

Reputation: 638

Needed to disable NTLMv1 by setting the registry key value to 3 for:

HKLM\SYSTEM\CurrentControlSet\Control\Lsa > LmCompatibilityLevel

https://learn.microsoft.com/en-gb/azure/storage/files/storage-troubleshoot-windows-file-connection-problems

Upvotes: 1

Related Questions