After unattended install two keyboards are present

xillibit

New Member
Messages
12
Reaction score
1
Hello,

I have build an unattended version with win 11 25H2, the issue after install it on a computer i have two keyboards. I can remove one manually but when i log with a new user the two keyboards are here.

My system is in french i get this after first login :

Capture d'écran 2025-10-14 144203.png

What is wrong with my unattended ?

Thanks by advance
 

Attachments

Since 24h2, there are 2 French languages for the keyboard (never looked what the difference was), I removed the "French (Standard)" keyboard
 
W11 24H2 adds the new French AZERTY keyboard layout, per the French national standard (NF Z71-300).
France's new AZERTY keyboard layout

0001040c - Standard
0000040c - Traditionnel

You can try running this command from Post-Setup (After logon):

CommandParameters
powershell"$Layout = New-WinUserLanguageList 'fr-FR'; $Layout[0].InputMethodTips.Clear(); $Layout[0].InputMethodTips.Add('040c:0001040c'); Set-WinUserLanguageList -LanguageList $Layout -Confirm:$false -Force"
 
Hello,

Thanks i will try, i had deleted manually this one "0001040c - Standard" when it has happened. So your powershell command is keeping only the 0001040c ?
 
This command updates the user's profile so only one keyboard layout remains. Clear() + InputMethodTips.Add('...')
You add which keyboard you prefer to keep.
 
Back
Top