Parece que vou ter que me responder .. o seguinte script em lote copia as configurações do teclado do usuário atual para a conta de outro usuário e para o usuário padrão (que é usado na tela de login).
Dessa forma, é possível configurar as configurações do teclado como administrador e copiá-las facilmente para uma ou mais outras contas de usuário.
Espero que seja de alguma ajuda para alguém ..
@echo off
rem synchronize the keyboard layout to the "User" user
reg load HKU\lulli "c:\documents and settings\user\ntuser.dat"
reg delete "HKU\lulli\Keyboard Layout\Preload" /va /f
reg copy "HKCU\Keyboard Layout\Preload" "HKU\lulli\Keyboard Layout\Preload" /f
reg delete "HKU\lulli\Keyboard Layout\Substitutes" /va /f
reg copy "HKCU\Keyboard Layout\Substitutes" "HKU\lulli\Keyboard Layout\Substitutes" /f
reg unload HKU\lulli
rem synchronize the keyboard layout to the default user (login screen)
reg delete "HKU\.DEFAULT\Keyboard Layout\Preload" /va /f
reg copy "HKCU\Keyboard Layout\Preload" "HKU\.DEFAULT\Keyboard Layout\Preload" /f
reg delete "HKU\.DEFAULT\Keyboard Layout\Substitutes" /va /f
reg copy "HKCU\Keyboard Layout\Substitutes" "HKU\.DEFAULT\Keyboard Layout\Substitutes" /f