This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

 

BIODATA

 

NAMA LENGKAP

IFAN FAJAR FANANI

NAMA PANGGILAN

IVAN VANKO

JENIS KELAMIN

LAKI-LAKI

AGAMA

ISLAM

TEMPAT TANGGAL LAHIR

MOJOKERTO, 12 JUNI 1997

HOBI

APLIKASI KOMPUTER

Jumat, 07 Maret 2014

Registry Tweaks to Customize Taskbar Navigation and Start Screen Settings in Windows 8.1

When Microsoft introduced new Start Screen and Hot Corners features in Windows 8 operating system, lots of people complained about the inability to customize or disable these new features. Actually Microsoft didn't allow any built-in option to disable hot corners (such as Charms Bar and App Switcher) in Windows 8 or to disable Start Screen and direct boot into Windows 8 Desktop. That's why we had to use 3rd party software such as Classic Shell to turn off Hot corners and skip Start Screen in Windows 8.
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.
Taskbar_Navigation_Properties_Windows_8_1.png
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
Although these options are easily accessible through Taskbar properties but sometimes you might need a ready-made script to quickly change these options in single step. For example, you prefer to disable hot corners and direct boot into Windows 8.1 Desktop and you always change these options whenever you perform a clean installation of Windows 8.1 in your computer. There may be another situation where you need to apply these same settings in many computers in your work environment.
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
Disable_Hot_Corners_Windows_8_1.png
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
========================================
Registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Replace_Command_Prompt_Powershell_Win_X_Menu.png
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
========================================
Registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent
Desktop_Wallpaper_on_Start_Screen_Windows_8_1.png
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
========================================
Registry key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage
Customize_Start_Screen_Options_Windows_8_1.png
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
========================================
STEP 3: Once you make changes to your desired settings, you can take backup of the Registry key by right-clicking on the key and selecting "Export" option. Now you can save the Registry script to any desired location.
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.00
[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
That'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.