We are in the process of rolling out IE 7 and Outlook 2007 to all our workstations. Ran into a few things that were annoying so here is how they are now fixed up.
After you install IE7 there is that annoying Language Bar that shows up in the task bar next to the clock. Since we don’t use this thing and it confuses our users and we don’t want to field all the calls of freaked out users wondering what this thing is, we disable it.
Since we use KiXtart as our logon scripting language I will give you the syntax for that, but it is just registry entries so you can use the same thing with what ever tools you use to push out registry changes.
; Turn off Language Bar
$ReturnCode = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ShowStatus", "3", "REG_DWORD")
$ReturnCode = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar", "ExtraIconsOnMinimized", "0", "REG_DWORD")
$ReturnCode = WriteValue("HKEY_CURRENT_USER\Software\Microsoft\CTF\MSUTB", "DontShowCloseLangBarDlg", "1", "REG_DWORD")
$ReturnCode = DelValue("HKEY_CURRENT_USER\Software\Microsoft\CTF\MSUTB", "ShowDeskBand")