How to Disable Internet Explorer 8 Welcome Screen Through Group Policies

My customer wanted to disable the IE 8 Welcome Screen through group policies.

Background:

After we install Internet Explorer 8 for the first time or reset the Internet Explorer Settings, you’ll see the Set Up Windows Internet Explorer 8 screen asking for the configuration of the search and accelerator settings. The setup would look as follows:

  Welcome Screen

After configuring the settings, a new tab window opens automatically, redirecting to Microsoft IE8 Website.

The setup modifies the following registry keys under HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main

1. REG_DWORD IE8RunOnceLastShown from 0 to 1

2. REG_DWORD IE8RunOncePerInstallCompleted from 0 to 1

3. REG_DWORD IE8TourNoShow from 0 to 1

4. REG_BINARY IE8RunOnceCompletionTime

5. REG_BINARY Window_Placement

It adds a REG_BINARY key called IE8RunOnceLastShown_TIMESTAMP.

Solution:

There are two ways which can be used to disable it

1. Disabling the setting on the local machine directly.

a) Open Registry editor (regedit.exe) and navigate to the following key HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Main

b) Create a new REG_DWORD value named DisableFirstRunCustomize

c) Set its value data to 1.

d) Exit the Registry Editor.

NOTE: We can also use the Group Policy Management Console to create this particular registry key and populate it to all clients.

2. Using Group Policy Editor

a) Launch the Group Policy Editor (gpedit.msc)

b) Navigate to the following branch:

Computer Configuration | Administrative Templates | Windows Components | Internet Explorer

c) Double-click “Prevent performance of First Run Customize Settings”

d) Set the value to Enabled and make the choice in the drop-down below. The details about this setting are as follows (taken from the gpedit console)

This policy setting prevents performance of the First Run Customize settings ability and controls what the user will see when they launch Internet Explorer for the first time after installation of Internet Explorer.

If you enable this policy setting, you must make one of two choices:

1: Skip Customize Settings, and go directly to the user’s home page.

2: Skip Customize Settings, and go directly to the "Welcome to Internet Explorer" Web page.

If you disable or do not configure this policy setting, users go through the regular first run process.

e) Click Apply, close the dialog and exit the Group Policy Editor.

f) Perform a gpupdate /force for the settings to apply on the machine.

 

I hope that helps, please feel free to comment if i have missed anything.