Posted On November 11, 2020

How to Enforce Keyboard Layout Consistency for Remote Desktop

kimconnect 0 comments
blog.KimConnect.com >> Codes >> How to Enforce Keyboard Layout Consistency for Remote Desktop
# The following function will allow the RDP session to store the user keyboard language preference as stored in the session profile.
# This bypasses the default layout provided by the Terminal Server client.
# In other words, the default keyboard layout and input language can be set by the user and saved in that profile - a log-off is required after changing this setting. All later user logons will use the default keyboard layout and input language from this profile.
# This saves users the efforts of having to manually (shitft-alt) switch the layout after each login.

function setRdpKeyboardPerProfile{
	$keyboardRegKey='REGISTRY::HKLM\SYSTEM\CurrentControlSet\Control\Keyboard Layout'
	$keyName='IgnoreRemoteKeyboardLayout'
	$keyValue=1
	Set-ItemProperty -Path $keyboardRegKey -Name $keyName -Value $keyValue -Type DWORD -Force
}
setRdpKeyboardPerProfile

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

WordPress: Add Search Box Into Header

Navigate to Appearance > Theme Editor > select header.php > search for this section: <div…

PowerShell: Error when Pause is Placed Inside Function

Error: + Function Search-ScheduledTasks{+ ~Missing closing '}' in statement block or type definition.At C:\Users\kdoan\Desktop\Notes\test.ps1:57 char:1+…

WordPress: How To Add Custom XML Sitemap to Yoast SEO

Step 1: Install Yoast SEO Step 2: Install Code Snippets Step 3: Add this Snippet…