@
coucou
If you have integrated the update
KB976002 you can prevent the window for the BrowserChoice with an Addon reg using Windows 7 Toolkit (like explained inside the link above) or injecting the reg key inside install.wim.
I've tried successfully (with my Windows 7 Ultimate French version) integrating (injecting) the reg file with this batch file:
(Mounted and temp folders "C:\test" and reg file inside "C:\DISM_Temp" with
ONE Image with my example)
Adapt the paths to your needs and set the reg file inside a temp folder ("C:\DISM_Temp" with my example) !
RegHive.cmd
@echo off
Color 0A
echo.
"C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /Wimfile:"C:\Se7en\sources\install.wim" /index:1 /MountDir:"C:\test"
echo.
pause
echo.
reg.exe load HKLM\WIM_Default "C:\test\Users\Default\NTUSER.DAT"
reg.exe load HKLM\WIM_Software "C:\test\Windows\System32\config\SOFTWARE"
reg.exe load HKLM\WIM_System "C:\test\Windows\System32\config\SYSTEM"
echo.
pause
reg.exe import "C:\DISM_Temp\RegistryTweaks.reg"
pause
echo.
reg.exe unload HKLM\WIM_Default
reg.exe unload HKLM\WIM_Software
reg.exe unload HKLM\WIM_System
pause
echo.
"C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\test" /Commit
echo.
pause
And the reg file inside your temp folder:
RegistryTweaks.reg
Windows Registry Editor Version 5.00
; Empêche le démarrage de la fenêtre pour le choix du Navigateur
; provoqué par la mise à jour KB976002 et supprime le raccourci sur le Bureau
[HKEY_LOCAL_MACHINE\SOFTWARE\BrowserChoice]
"Shortcut"=dword:00000000
"Enable"=dword:00000000
Enjoy!
*Edit: the correct value for the reg file with
reg.exe is with my example above:
RegistryTweaks.reg
Quote
Windows Registry Editor Version 5.00
; Supprime l'affichage du choix du Navigateur et le raccourci sur le Buraeu
[HKEY_LOCAL_MACHINE\WIM_Software\BrowserChoice]
"Enable"=dword:00000000
"Shortcut"=dword:00000000
This post has been edited by myselfidem: 15 January 2011 - 05:53 AM