efiftythree
IS-IT--Management
I'm nearly at my wits end. There must be a way to automatically disable, remove, or simply not install the Language Bar that shows up on the task bar.
The only thing I have been able to find anywhere on the net is how to do it manually (uncheck the boxes). I also found a little reg hack that removes some of the buttons from the Language Bar but does not remove it completely from the task bar.
This batch file removes all but the "help" icon from the task bar, but does not turn the language bar OFF.
HELP! PLEASE! I would like to be able to turn it off with a GPO or with an MST... any ideas?
The only thing I have been able to find anywhere on the net is how to do it manually (uncheck the boxes). I also found a little reg hack that removes some of the buttons from the Language Bar but does not remove it completely from the task bar.
This batch file removes all but the "help" icon from the task bar, but does not turn the language bar OFF.
Code:
@echo off
setlocal
call :quiet>nul 2>&1
endlocal
goto :EOF
:quiet
REG ADD "HKCU\Software\Microsoft\CTF" /V "Disable Thread Input Manager" /T REG_DWORD /F /D 1
REG ADD "HKCU\Software\Microsoft\CTF\LangBar" /V ExtraIconsOnMinimized /T REG_DWORD /F /D 0
REG ADD "HKCU\Software\Microsoft\CTF\LangBar" /V ShowStatus /T REG_DWORD /F /D 2
REG ADD "HKCU\Software\Microsoft\CTF\MSUTB" /V ShowDeskBand /T REG_DWORD /F /D 1
HELP! PLEASE! I would like to be able to turn it off with a GPO or with an MST... any ideas?