Help make script to add ie. To desktop

Discussion in 'Windows 7' started by mzakho, Mar 12, 2011.

  1. mzakho

    mzakho MDL Member

    Nov 22, 2008
    166
    73
    10
    #1 mzakho, Mar 12, 2011
    Last edited by a moderator: Apr 20, 2017
    PLS ANY HELP OR ADV.


    any help or script to add in $OEM$ folder in win7 iso sources to show Internet explorer on desktop

    i used this script IN SetupComplete.cmd to run Windows_Loader_v1.9.6 is work how can add IE.

    AND more to the script

    any help appr.

    Code:
    %~dp0Windows_Loader_v1.9.6.exe /s
    
    exit
    WITH REGARDS
     
  2. searchengine

    searchengine Guest

    #2 searchengine, Mar 14, 2011
    Last edited by a moderator: Apr 20, 2017
    I think this should work, but I have only tested from Desktop (not unattended)
    Edit - unattended test in vmware successful 14-03-2011 :)

    Make new SetupComplete.cmd
    Code:
    @echo off
    
    echo [Version] >>%windir%\Setup\scripts\IE.inf
    echo Signature="$CHICAGO$" >>%windir%\Setup\scripts\IE.inf
    echo [DefaultInstall] >>%windir%\Setup\scripts\IE.inf
    echo ProfileItems=AddShortcut >>%windir%\Setup\scripts\IE.inf
    echo [AddShortcut] >>%windir%\Setup\scripts\IE.inf
    echo Name=Internet Explorer,8,25 >>%windir%\Setup\scripts\IE.inf
    echo CmdLine=16422,Internet Explorer,iexplore.exe >>%windir%\Setup\scripts\IE.inf
    echo WorkingDir=16422,Internet Explorer >>%windir%\Setup\scripts\IE.inf
    
    RUNDLL32 advpack.dll,LaunchINFSection %windir%\Setup\scripts\IE.inf,DefaultInstall >nul
    del /F /Q %windir%\Setup\scripts\IE.inf >nul
    
    %~dp0Windows_Loader_v1.9.6.exe /s
    
    exit
    GREEN - this creates IE.inf file to add desktop shortcut
    BLUE - this runs the IE.inf file to add Desktop shortcut
    RED - this deletes the IE.inf file, after it has been run
     
  3. mzakho

    mzakho MDL Member

    Nov 22, 2008
    166
    73
    10
    appreciate your help tested and work 100% after install is completed IE show on desktop:cap::cap: