The NAS / SMB issues happened after PIN reset when the NAS is joined to a domain, or maybe you're mapping a drive that relies on stored credentials, the reset PIN or account conflict might disrupt credential manager entries or access tokens. Then the symptoms may appear like : File Explorer crashTaskbar disappearing, Windows key shortcuts failing, File Explorer unable to restart, point to a deeper authentication or permissions mismatch, possibly SMB or Winlogon-related.
So I have some recommend for you to try it out and then let me know the result :
Delete existing mapped drive:
-
net use * /delete
Clear stored credentials:
- Open Credential Manager
- Remove any credentials associated with the NAS
Remap the network drive:
- Using
net use X: \\NAS_IP\share /user:NAS_USER PASSWORD /persistent:yes
Also consider enabling these SMB settings via PowerShell:
Set-SmbClientConfiguration -EnableSecuritySignature $true
Set-SmbClientConfiguration -RequireSecuritySignature $false
*But if your NAS only supports SMB1 (not recommended), make sure the feature is enabled manually (Optional Features > SMB 1.0/CIFS
), though prefer updating your NAS firmware to support SMB2 or 3 instead.