Su Windows 11 esegui PowerShell come amministratore e dai questo comando:
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force
Se il PC è Windows 11 24H2/25H2 e ancora non accede, spesso serve anche disabilitare la firma SMB obbligatoria lato client:
Set-SmbClientConfiguration -RequireSecuritySignature $false -Force
Per verificare:
Get-SmbClientConfiguration | Select EnableInsecureGuestLogons,RequireSecuritySignature
Poi riprova ad aprire:
\\NOME-SERVER\NOME-CONDIVISIONE
Oppure:
\\192.168.1.xxx\NOME-CONDIVISIONE
Microsoft conferma che l’accesso guest SMB2/SMB3 è disabilitato di default nelle versioni moderne di Windows e che il comando corretto è Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force. Su Windows 11 24H2 e successivi la firma SMB può bloccare ulteriormente l’accesso guest.
Nessun commento:
Posta un commento