Hello Baptiste DEROSIN
I learnt a similar issue from this article and want to share it with you: [https://windowsforum.com/threads/fixing-windows-11-remote-desktop-issues-after-24h2-update.352977/](https://windowsforum.com/threads/fixing-windows-11-remote-desktop-issues-after-24h2-update.352977/
)
In short, Windows 11 IoT Enterprise LTSC 2024 has stricter security defaults. But here’s how you can resolve the “login attempt failed” issue based on the above article:
- Create matching local user accounts
- Ensure each PC has a local user account with the same username and password.
- RDP and SMB often reject credentials if the account doesn’t exist on the target machine.
- Disable Network Level Authentication (NLA) (for testing)
- Go to System Properties > Remote tab.
- Uncheck “Allow connections only from computers running Remote Desktop with Network Level Authentication.”
- This helps isolate whether NLA is blocking access.
- Enable “AllowInsecureGuestLogons” for SMB
- Open Registry Editor and navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters - Create or set
AllowInsecureGuestLogonstoDWORD: 1 - Reboot the system.
- Open Registry Editor and navigate to:
- Ensure correct sharing permissions
- Share folder with “Everyone” and grant NTFS permissions to the same user account.
- Use
\\IP\folderor\\computername\folderfrom another PC.
- Check firewall settings
- Ensure inbound rules for “Remote Desktop” and “File and Printer Sharing” are enabled in Windows Defender Firewall.
- Verify SMB protocol is enabled
- Run
Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol - If disabled, enable it with:
Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol
- Run