Disable BrowserChoice on First Start

Discussion in 'Windows 8' started by DioNZB, Aug 20, 2014.

  1. DioNZB

    DioNZB MDL Member

    Jun 23, 2013
    238
    419
    10
    #1 DioNZB, Aug 20, 2014
    Last edited: Aug 20, 2014
    Hello everyone :),

    After my Windows 8.1 is Installed. he's opening BrowserChoice..
    I don't want that.
    i Want that the button for BrowserChoice on the desktop..
    but not first running

    Does anyone have a script, reg file, batch file. to disable that

    And do you guys have a script for Windows 8.1 And Windows 7

    Thx :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. antonio120

    antonio120 MDL Novice

    Mar 6, 2012
    9
    4
    0
    > Run msconfig.exe
    > Click on the Startup tab
    > Scroll down until you find the Startup Item:- browserchoice
    > Untick browserchoice
    > Click on Apply and then OK
    > Restart your PC when asked
     
  3. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,378
    2,479
    120
    Run taskschd.msc, navigate to Library folder (2nd top) and disable browserchoice task...
     
  4. DioNZB

    DioNZB MDL Member

    Jun 23, 2013
    238
    419
    10
    thx

    but do you have a batch file or reg file that can do that
    i want to set it in my setupcomplete

    thx
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Tseki

    Tseki Guest

    #5 Tseki, Aug 21, 2014
    Last edited by a moderator: Aug 21, 2014
  6. DioNZB

    DioNZB MDL Member

    Jun 23, 2013
    238
    419
    10
    Yes..

    but i want to do it Unattended..
    so with a script

    Do you have that?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. cleaver

    cleaver MDL Novice

    Aug 17, 2014
    1
    4
    0
    #7 cleaver, Aug 21, 2014
    Last edited by a moderator: Apr 20, 2017
    SetupComplete.cmd

    Code:
    @echo off
    
    :: Place the SetupComplete.cmd in \sources\$OEM$\$$\Setup\Scripts
    :: Note! The per user (HKEY_CURRENT_USER) stuff cannot be done from SetupComplete.cmd
    :: Note! In Windows 8/8.1 Setupcomplete.cmd are disabled if an OEM product key is used.
    
    :: Disable Browser Choice for EU-countries
    REG ADD "HKLM\SOFTWARE\BrowserChoice" /V "Enable" /T "REG_DWORD" /D "00000000" /F >NUL
    
    :: Disable Metro tutorial tips
    REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\EdgeUI" /V "DisableHelpSticker" /T "REG_DWORD" /D "00000001" /F >NUL
    
    RD /S /Q %windir%\Setup\Scripts >nul
    DEL /F /Q %0% >nul
    exit
     
  8. DioNZB

    DioNZB MDL Member

    Jun 23, 2013
    238
    419
    10
    Thx

    this is perfect :):clap:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. sunilk

    sunilk MDL Member

    May 15, 2014
    111
    16
    10
    nice share bro