Finally Microsoft listened users feedback and provided new options in Windows 8.1 to customize and change Start Screen and hot corners functionality. Microsoft added a new tab "Navigation" in Taskbar properties to allow Windows 8.1 users to disable Hot corners, direct boot into Desktop and customize Start Screen look and functionality.
Windows 8.1 allows users to change or customize following options using this new Navigation tab in Taskbar properties:
- Disable upper-left and upper-right hot corners as mentioned here
- Replace Command Prompt link with Power Shell in Win+X Menu as mentioned here
- Direct boot into Windows 8.1 Desktop as mentioned here
- Use Desktop wallpaper as Start Screen background as mentioned here
- Show Start Screen on current monitor screen
- Set All Apps page as default in Start Screen as mentioned here
In such conditions, if you have a ready-made Registry script with you, you can just double-click on it and it'll automatically change all these options according to your requirements. You'll not need to open Taskbar properties and enable/disable each and every option given in Navigation tab.
A similar request was made by our reader "Francesco" who wanted a Registry script to apply his desired Navigation tab configuration each time he performs a fresh installation of Windows 8.1.
After receiving his request, we decided to create this exclusive tutorial which will tell you the exact location of Registry keys in Registry Editor which are modified by these options present in Taskbar properties. So that you can change your desired settings and then take a backup of these Registry keys. Once you take the backup of Registry key, you can use the Registry script in future to directly apply your preferred settings without any need of opening Taskbar properties and change the settings.
So without wasting time lets start the tutorial:
STEP 1: Type regedit in RUN dialog box and press Enter. It'll open Registry Editor.
STEP 2: Now you'll need to go to the correct Registry key containing values associated with options present in Navigation tab of Taskbar properties.
We are going to mention the option name present in Navigation tab, its corresponding Registry key location and its DWORD name and value. You just need to go to the associated Registry key and change the value of DWORD according to your requirements:
Registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\EdgeUi
Option name: When I point to the upper-right corner, show the charms
DWORD: DisableTRCorner
To enable option, set DWORD value to 0 and to disable this option, set DWORD value to 1
--------------------------------------------------
Option name: When I click the upper-left corner, switch between my recent apps
DWORD: DisableTLCorner
To enable option, set DWORD value to 0 and to disable this option, set DWORD value to 1
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Option name: Replace Command Prompt with Windows PowerShell in the menu when I right-click the lower-left corner or press Windows key+X
DWORD: DontUsePowerShellOnWinX
To enable option, set DWORD value to 0 and to disable this option, set DWORD value to 1
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent
Option name: Show my desktop background on Start
DWORD: MotionAccentId_v1.00
To enable option, set DWORD value to db and to disable this option, set DWORD value to dd
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage
Option name: When I sign in or close all apps on a screen, go to the desktop instead of Start
DWORD: OpenAtLogon
To enable option, set DWORD value to 0 and to disable this option, set DWORD value to 1
--------------------------------------------------
Option name: Show Start on the display I'm using when I press the Windows logo key
DWORD: MonitorOverride
To enable option, set DWORD value to 1 and to disable this option, set DWORD value to 0
--------------------------------------------------
Option name: Show the Apps view automatically when I go to Start
DWORD: MakeAllAppsDefault
To enable option, set DWORD value to 1 and to disable this option, set DWORD value to 0
--------------------------------------------------
Option name: Search everywhere instead of just my apps when I search from the Apps view
DWORD: GlobalSearchInApps
To enable option, set DWORD value to 1 and to disable this option, set DWORD value to 0
--------------------------------------------------
Option name: List desktop apps first in the Apps view when it's sorted by category
DWORD: DesktopFirst
To enable option, set DWORD value to 1 and to disable this option, set DWORD value to 0
PS: For your convenience, we are providing a ready-made Registry script. You just need to copy following piece of code and paste it in Notepad. After that change the values mentioned in BOLD according to your requirements as mentioned above and then save the file with the name "Settings.REG" (including double-quotes).
Windows Registry Editor Version 5.00That's it. Now you can keep this Registry script file in a safe place on your computer and whenever you need to apply these settings, simply double-click on the script file and accept the confirmation. It'll immediately change your desired settings.
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell\EdgeUi]
"DisableTLCorner"=dword:00000001
"DisableTRCorner"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DontUsePowerShellOnWinX"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent]
"MotionAccentId_v1.00"=dword:000000db
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage]
"GlobalSearchInApps"=dword:00000001
"OpenAtLogon"=dword:00000000
"MonitorOverride"=dword:00000001
"MakeAllAppsDefault"=dword:00000001
"DesktopFirst"=dword:00000001