Installation IE8 auf WIndows XP SP3 Deutsch mit Roaming Profiles
Will man IE8 silent installieren braucht es einiges an Erfahrung. Dies vor allem auf Deutschen XP clients mit Roaming Profiles. Als erstes macht
meine ein Autoinstaller mit dem IEAK fuer Internet Explorer 8. Diesen kann man bei MS downloaden. Richtige PATCH oder PAKET Reihenfolge für
Deutsche Windows XP SP3 clients (Es muss SP3 schon drauf sein) mit Roaming Profiles
1 Internet Explorer 8 aus IEAK (IE8-Setup-Full.exe)
2 941158 Delay Logon Fix (20 Sekunden Delay Romaing Profile Logon fix)
http://support.microsoft.com/kb/941158/en-us
Richtige Ver. muss sein min 18.0.6001.22918 im File c:\windows\system32\iedkcs32.dll
3 941158 Delay Aktivierung (Fix fuer Fix )
Registry File:
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_PARSING_BRANDING_CMDLINE_FLAGS_KB941158]
“*”=dword:00000001 4 974277 Site2Site, GPO, nonusdomain 50113 (Sonst hängende Profile re.002) > Entsteht sonst m.butsch.001, m.butsch.002 (Profile Lock beim abmelden durch IE8 und GPO) http://support.microsoft.com/kb/974277/en-us Registry File: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_USE_IETLDLIST_FOR_DOMAIN_DETERMINATION]
“Winlogon.exe”=dword:00000000 Nach dem installieren dieses Patches MUSS der client zwingend rebooten. Fängt der User an zu arbeiten ohne diesen Patch + Reboot kann er sein profile nicht zurück schreiben beim abmelden des Roaming Profiles.
Wir reden von diesem Icon:
rundll32.exe shell32.dll,Control_RunDLL inetcpl.cpl,,0
Notfalls kann man per VB ein ähnliches Icon per USER erstellen:
dim objShell, strDesktopPath, objLink, gefunden
set objShell = CreateObject("WScript.Shell")
' strDesktopPath = objShell.SpecialFolders("AllUsersDesktop")
strDesktopPath = objShell.SpecialFolders("Desktop")
set objLink = objShell.CreateShortcut(strDesktopPath & "\Internet Explorer.lnk")
' Kontrolle on Link existiert
Set objFSO = CreateObject("Scripting.FileSystemObject")
if Not objFSO.FileExists (strDesktopPath & "\Internet Explorer.lnk") then
objLink.TargetPath = "%Programfiles%\Internet Explorer\iexplore.exe"
objLink.WindowStyle = 1
objLink.WorkingDirectory = "%Programfiles%"
objLink.Save
end if