Change Keyboard language overrides keyboard shortcuts with a script

Lescarret, Loic 1 Reputation point
2022-01-31T16:16:46.693+00:00

I need to make a PowerShell script to set the 'Keyboard language overrides keyboard shortcuts.' option to French on Teams. Current default value is English, and I would like to change it to French with a script. Could you please help me identifying the PowerShell commands and parameters to change this ?

Microsoft Teams Development
Windows for business Windows Server User experience PowerShell
Microsoft Teams Microsoft Teams for business Other
{count} votes

2 answers

Sort by: Most helpful
  1. Andreas Baumgarten 123.4K Reputation points MVP Volunteer Moderator
    2022-02-01T07:24:56.92+00:00

    Hi @Lescarret, Loic ,

    maybe this helps:
    https://learn.microsoft.com/en-us/powershell/module/international/set-windefaultinputmethodoverride?view=windowsserver2022-ps
    https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-input-locales-for-windows-language-packs?view=windows-11

    Set-WinDefaultInputMethodOverride -InputTip "040c:0000040c"  
    

    ----------

    (If the reply was helpful please don't forget to upvote and/or accept as answer, thank you)

    Regards
    Andreas Baumgarten


  2. Rich Matheisen 47,901 Reputation points
    2022-02-01T20:47:22.62+00:00

    The "app language" is a client-side (not server) choice. There's no PowerShell cmdlet associated with that configuration setting -- but the setting is stored in a JSON file at the client machine for each user of that machine.

    This should show you how to accomplish what you need to do to alter that setting: Automate-Microsoft-Teams-desktop-settings-with-PowerShell


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.