This post has been edited by acen2006: 12 December 2006 - 01:08 PM
Page 1 of 1
Internet Explorer 7 Install Changes My theme
#1
Posted 12 December 2006 - 01:06 PM
Would anyone please be able to help. I install internet explorer 7 from runonce and it installs fine but it seems to change the windows theme to classic for some reason even tho I have a theme change in the WINntsif. Everything worked ok before I added the IE part.
#2
Posted 13 December 2006 - 01:23 AM
how do you installed IE7? did you use the silent installer by shark007? i still havent added to my uadvd.
maybe there's a conflict with the ie7 dll's.
maybe there's a conflict with the ie7 dll's.
#3
Posted 13 December 2006 - 03:39 AM
I have it working fine in RunOnceEx method.
I download the Internet Explorer Admin Kit (IEAK) for IE7. You will need IE7 installed before you run this.
http://www.microsoft.com/technet/prodtechn...k7/default.mspx
You can use this to create an IE7Setup.exe which you can personalise. It is mainly aimed at easy deployment in corporate environments but no reason why you cannot use it on a home PC.
I include IE7 at the end of my RunOnceEx.cmd which appears to work fine on my virtual PC (MS Virtual PC 2004).
The /Q installs in quiet mode, no progress bar is displayed. Note that the install does take a while ie. more than 5 mins.
Hope this helps.
Here is my RunOnceEx.cmd:
@echo off
SetLocal enableextensions
SET CDROM=%~d0
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "Installing Applications" /f
REG ADD %KEY%\001 /VE /D "Acrobat Reader 7.07" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%\Applications\AdobeReader\Adobereader707.msi TRANSFORMS=Adobereader707.mst /qb" /f
REG ADD %KEY%\005 /VE /D "Lavasoft Ad-Aware 1.0.6.0" /f
REG ADD %KEY%\005 /V 1 /D "%CDROM%\Applications\Adaware\aawsepersonal.exe /S" /f
REG ADD %KEY%\010 /VE /D "Java Runtime 5.0 Update 10.0" /f
REG ADD %KEY%\010 /V 1 /D "%CDROM%\Applications\Java\java.exe /qb IEXPLORER=1 JAVAUPDATE=0 SYSTRAY=0" /f
REG ADD %KEY%\015 /VE /D "Microsoft Office 2003 Professional" /f
REG ADD %KEY%\015 /V 1 /D "%CDROM%\Applications\Office2003\setup.exe TRANSFORMS=Unattended.mst /qb" /f
REG ADD %KEY%\020 /VE /D "Microsoft Frontpage 2003" /f
REG ADD %KEY%\020 /V 1 /D "%CDROM%\Applications\Frontpage2003\setup.exe TRANSFORMS=Unattended.mst /qb" /f
REG ADD %KEY%\021 /VE /D "Microsoft .NET Framework 1.1 SP1" /f
REG ADD %KEY%\021 /V 1 /D "%CDROM%\Applications\DotNet11sp1\dotnet11sp1.exe" /f
REG ADD %KEY%\025 /VE /D "Microsoft .NET Framework 2.0" /f
REG ADD %KEY%\025 /V 1 /D "%CDROM%\Applications\DotNet2\dotnet2.exe" /f
REG ADD %KEY%\030 /VE /D "Real Alternative 1.51" /f
REG ADD %KEY%\030 /V 1 /D "%CDROM%\Applications\RealAlternative\realalt151.exe /VERYSILENT /SP-" /f
REG ADD %KEY%\040 /VE /D "Apple Software Update 1.0.2.1" /f
REG ADD %KEY%\040 /V 1 /D "%CDROM%\Applications\AppleSoftwareUpdate\AppleSoftwareUpdate.msi TRANSFORMS=applesoftwareupdate.mst /qb" /f
REG ADD %KEY%\045 /VE /D "QuickTime 7.13.170" /f
REG ADD %KEY%\045 /V 1 /D "%CDROM%\Applications\Quicktime\QuickTime.msi TRANSFORMS=quicktime.mst /qb" /f
REG ADD %KEY%\050 /VE /D "iTunes 7.0.2.16" /f
REG ADD %KEY%\050 /V 1 /D "%CDROM%\Applications\itunes\iTunes.msi TRANSFORMS=itunes.mst /qb" /f
REG ADD %KEY%\055 /VE /D "Windows Defender 1.1.1593.0" /f
REG ADD %KEY%\055 /V 1 /D "%CDROM%\Applications\Windowsdefender\WindowsDefender.msi TRANSFORMS=WindowsDefender.mst /qb" /f
REG ADD %KEY%\060 /VE /D "Orca" /f
REG ADD %KEY%\060 /V 1 /D "%CDROM%\Applications\Orca\orca.msi /qb" /f
REG ADD %KEY%\065 /VE /D "ISSCript9 (for Sony PC suite)" /f
REG ADD %KEY%\065 /V 1 /D "%CDROM%\Applications\SonyPCSuite\ISScript9.msi /qb" /f
REG ADD %KEY%\070 /VE /D "Sony PC suite 1.30.53" /f
REG ADD %KEY%\070 /V 1 /D "%CDROM%\Applications\SonyPCSuite\SonyPCSuite.msi TRANSFORMS=sonypcsuite.mst /qb" /f
REG ADD %KEY%\075 /VE /D "Spy Bot 1.4" /f"
REG ADD %KEY%\075 /V 1 /D "%CDROM%\Applications\Spybot\spybotsd14.exe /silent" /f
REG ADD %KEY%\097 /VE /D "Importing Registry Tweaks" /f
REG ADD %KEY%\097 /V 1 /D "REGEDIT /S %CDROM%\Applications\regtweaks.reg" /f
REG ADD %KEY%\098 /VE /D "Cleaning Up default shortcuts" /f
REG ADD %KEY%\098 /V 1 /D "%CDROM%\Applications\cleanup.cmd" /f
REG ADD %KEY%\099 /VE /D "Internet Explorer 7" /f
REG ADD %KEY%\099 /V 1 /D "%CDROM%\Applications\IE7\IE7Setup.exe /Q" /f
EndLocal
EXIT
I download the Internet Explorer Admin Kit (IEAK) for IE7. You will need IE7 installed before you run this.
http://www.microsoft.com/technet/prodtechn...k7/default.mspx
You can use this to create an IE7Setup.exe which you can personalise. It is mainly aimed at easy deployment in corporate environments but no reason why you cannot use it on a home PC.
I include IE7 at the end of my RunOnceEx.cmd which appears to work fine on my virtual PC (MS Virtual PC 2004).
The /Q installs in quiet mode, no progress bar is displayed. Note that the install does take a while ie. more than 5 mins.
Hope this helps.
Here is my RunOnceEx.cmd:
@echo off
SetLocal enableextensions
SET CDROM=%~d0
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "Installing Applications" /f
REG ADD %KEY%\001 /VE /D "Acrobat Reader 7.07" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%\Applications\AdobeReader\Adobereader707.msi TRANSFORMS=Adobereader707.mst /qb" /f
REG ADD %KEY%\005 /VE /D "Lavasoft Ad-Aware 1.0.6.0" /f
REG ADD %KEY%\005 /V 1 /D "%CDROM%\Applications\Adaware\aawsepersonal.exe /S" /f
REG ADD %KEY%\010 /VE /D "Java Runtime 5.0 Update 10.0" /f
REG ADD %KEY%\010 /V 1 /D "%CDROM%\Applications\Java\java.exe /qb IEXPLORER=1 JAVAUPDATE=0 SYSTRAY=0" /f
REG ADD %KEY%\015 /VE /D "Microsoft Office 2003 Professional" /f
REG ADD %KEY%\015 /V 1 /D "%CDROM%\Applications\Office2003\setup.exe TRANSFORMS=Unattended.mst /qb" /f
REG ADD %KEY%\020 /VE /D "Microsoft Frontpage 2003" /f
REG ADD %KEY%\020 /V 1 /D "%CDROM%\Applications\Frontpage2003\setup.exe TRANSFORMS=Unattended.mst /qb" /f
REG ADD %KEY%\021 /VE /D "Microsoft .NET Framework 1.1 SP1" /f
REG ADD %KEY%\021 /V 1 /D "%CDROM%\Applications\DotNet11sp1\dotnet11sp1.exe" /f
REG ADD %KEY%\025 /VE /D "Microsoft .NET Framework 2.0" /f
REG ADD %KEY%\025 /V 1 /D "%CDROM%\Applications\DotNet2\dotnet2.exe" /f
REG ADD %KEY%\030 /VE /D "Real Alternative 1.51" /f
REG ADD %KEY%\030 /V 1 /D "%CDROM%\Applications\RealAlternative\realalt151.exe /VERYSILENT /SP-" /f
REG ADD %KEY%\040 /VE /D "Apple Software Update 1.0.2.1" /f
REG ADD %KEY%\040 /V 1 /D "%CDROM%\Applications\AppleSoftwareUpdate\AppleSoftwareUpdate.msi TRANSFORMS=applesoftwareupdate.mst /qb" /f
REG ADD %KEY%\045 /VE /D "QuickTime 7.13.170" /f
REG ADD %KEY%\045 /V 1 /D "%CDROM%\Applications\Quicktime\QuickTime.msi TRANSFORMS=quicktime.mst /qb" /f
REG ADD %KEY%\050 /VE /D "iTunes 7.0.2.16" /f
REG ADD %KEY%\050 /V 1 /D "%CDROM%\Applications\itunes\iTunes.msi TRANSFORMS=itunes.mst /qb" /f
REG ADD %KEY%\055 /VE /D "Windows Defender 1.1.1593.0" /f
REG ADD %KEY%\055 /V 1 /D "%CDROM%\Applications\Windowsdefender\WindowsDefender.msi TRANSFORMS=WindowsDefender.mst /qb" /f
REG ADD %KEY%\060 /VE /D "Orca" /f
REG ADD %KEY%\060 /V 1 /D "%CDROM%\Applications\Orca\orca.msi /qb" /f
REG ADD %KEY%\065 /VE /D "ISSCript9 (for Sony PC suite)" /f
REG ADD %KEY%\065 /V 1 /D "%CDROM%\Applications\SonyPCSuite\ISScript9.msi /qb" /f
REG ADD %KEY%\070 /VE /D "Sony PC suite 1.30.53" /f
REG ADD %KEY%\070 /V 1 /D "%CDROM%\Applications\SonyPCSuite\SonyPCSuite.msi TRANSFORMS=sonypcsuite.mst /qb" /f
REG ADD %KEY%\075 /VE /D "Spy Bot 1.4" /f"
REG ADD %KEY%\075 /V 1 /D "%CDROM%\Applications\Spybot\spybotsd14.exe /silent" /f
REG ADD %KEY%\097 /VE /D "Importing Registry Tweaks" /f
REG ADD %KEY%\097 /V 1 /D "REGEDIT /S %CDROM%\Applications\regtweaks.reg" /f
REG ADD %KEY%\098 /VE /D "Cleaning Up default shortcuts" /f
REG ADD %KEY%\098 /V 1 /D "%CDROM%\Applications\cleanup.cmd" /f
REG ADD %KEY%\099 /VE /D "Internet Explorer 7" /f
REG ADD %KEY%\099 /V 1 /D "%CDROM%\Applications\IE7\IE7Setup.exe /Q" /f
EndLocal
EXIT
#4
Posted 18 December 2006 - 02:04 PM
It happens me the same like @acen2006, it changes the theme to classic when I install Internet explorer 7.0, but the strange, i have tried the installation in the VM and it has installed like a charm but when i install it in a real PC, it changes the theme.
Any suggest please on how can i fix it?
Thanks
Any suggest please on how can i fix it?
Thanks
#5
Posted 18 December 2006 - 03:15 PM
im installing it from runonceex and i dont have this error. maybe it is because i apply a custom theme in my winnt.sif file and when the runonceex routine finishes, windows loads this theme.
maybe you can try to load a theme in winnt.sif
if you like the default windows theme, apply it to see if this solves your problem.
BTW, im using the original installer from microsoft with this switches /passive /update-no /norestart
maybe you can try to load a theme in winnt.sif
if you like the default windows theme, apply it to see if this solves your problem.
BTW, im using the original installer from microsoft with this switches /passive /update-no /norestart
#6
Posted 18 December 2006 - 05:37 PM
I am loading the theme via Winnt.sif, and i am using also the original installer with the switch /passive /update-no /nobackup /norestart. I will try to put a batch file to install the theme i want until there is a solution.
Thanks @elajua
Thanks @elajua
#7
Posted 19 December 2006 - 11:50 AM
also you can try to avoid the /nobackup switch just to see if it solves the problem. maybe it is caused by a file being replaced or something. just a thought.
#9
Posted 21 December 2006 - 03:32 PM
Thanks for every1s help with this! I have now got this to work. I change the order in the runonce in the NTSIF. I make sure IE7 install first, well it seems to have done the trick but I know get this appear on the desktop :
(DESKTOP.INI, file)
[.ShellClassInfo]
LocalizedResourceName=@shell32.dll,-21782
[LocalizedFileNames]
Remote Assistance.Ink=@%systemroot%\system32\rcbdyctl.dll ,-152
Outlook Express.Ink=@xpsp1res.dll,-11004
(DESKTOP.INI, file)
[.ShellClassInfo]
LocalizedResourceName=@shell32.dll,-21782
[LocalizedFileNames]
Remote Assistance.Ink=@%systemroot%\system32\rcbdyctl.dll ,-152
Outlook Express.Ink=@xpsp1res.dll,-11004
#10
Posted 21 December 2006 - 06:29 PM
I donīt understand you because i have always installed IE7 the first in the RunOnceEx but did not the trick
#11
Posted 22 December 2006 - 11:29 PM
i had my IE7 almost at the top of my RunOnceEx file
this way im not having issues with IE7 except that 2 setups (tuneup utilities and solveigmm splitter) show an error saying that a shotcut to a website cannot be created. i just click ok on those error and my runonceex continues. im trying to figure out whats going on with those shortcuts.
REG ADD %KEY%\001 /VE /D "Microsoft .NET Framework 1.1 SP1" /f REG ADD %KEY%\001 /V 1 /D "%systemdrive%\Install\netfx11sp1\netfx.msi /qb" /f REG ADD %KEY%\001 /V 2 /D "%systemdrive%\Install\netfx11sp1\langpack\langpack.msi /qb /norestart" /f REG ADD %KEY%\002 /VE /D "Microsoft .NET Framework 2.0" /f REG ADD %KEY%\002 /V 1 /D "%systemdrive%\Install\netfx20\install.exe /q" /f REG ADD %KEY%\002 /V 2 /D "%systemdrive%\Install\netfx20\langpack\install.exe /q" /f REG ADD %KEY%\002 /V 3 /D "%systemdrive%\Install\netfx20\updates\KB917283.msp /quiet" /f REG ADD %KEY%\002 /V 4 /D "%systemdrive%\Install\netfx20\updates\KB922770.msp /quiet" /f REG ADD %KEY%\003 /VE /D "Microsoft DirectX 9.0c Dec 2006" /f REG ADD %KEY%\003 /V 1 /D "%systemdrive%\Install\directx\dxsetup.exe /silent" /f REG ADD %KEY%\004 /VE /D "Microsoft Stuff" /f REG ADD %KEY%\004 /V 1 /D "%cdrom%\Programas\microsoft\MSXML40SP2.msi /qb /norestart" /f REG ADD %KEY%\004 /V 2 /D "%cdrom%\Programas\microsoft\MSXM60.msi /qb /norestart" /f REG ADD %KEY%\004 /V 3 /D "%cdrom%\Programas\microsoft\cppredist.exe /Q:A /R:N" /f REG ADD %KEY%\005 /VE /D "Internet Explorer 7" /f REG ADD %KEY%\005 /V 1 /D "%cdrom%\Programas\ie7.exe /passive /update-no /norestart" /f
this way im not having issues with IE7 except that 2 setups (tuneup utilities and solveigmm splitter) show an error saying that a shotcut to a website cannot be created. i just click ok on those error and my runonceex continues. im trying to figure out whats going on with those shortcuts.
Share this topic:
Page 1 of 1



Help
Back to top








