Settings to Enhance Windows System User Experience

Enhancing Your Windows Experience: Essential Tweaks

In our daily use of Windows, we often encounter annoying little issues or repetitive, mechanical tasks. This article compiles solutions to some common Windows headaches.

Change: Default Software Installation Path to D Drive

This is the first method; I’ll introduce others in future articles.

When you run an installer, software always defaults to the C drive, requiring manual changes each time—a real inconvenience. You can modify the default installation path via the Registry.

Modifying the Registry carries risks! Proceed with caution!!!

It’s best to save Registry (.reg) files with ANSI encoding.

Create a new text file (.txt) and enter the following:

1
2
3
4
5
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]
"ProgramFilesDir"="D:\\Program Files"
"ProgramFilesDir (x86)"="D:\\Program Files (x86)"

Click File → Save As in the top-right corner.

Select ANSI encoding and save.

Rename the file extension from .txt to .reg, then double-click to run it and confirm.

The Registry has been successfully imported.

Next, go to the D drive and create two new folders:

1
2
Program Files
Program Files (x86)

Pay attention to uppercase/lowercase letters and spaces in folder names!

Log off or restart your computer.

Done.

This method changes the default installation path from C:\Program Files (x86) and C:\Program Files to D:\Program Files (x86) and D:\Program Files.

However, I encountered an issue after making these changes. Some desktop shortcuts updated their target paths from C:\Program Files or C:\Program Files (x86) to D:\Program Files (x86) and D:\Program Files, while others did not.

I’m still unsure why this happens—possibly due to some software’s self-protection mechanisms that automatically adjust shortcut targets based on environment variables. In such cases, you’ll need to recreate those shortcuts manually.

Change: Save Dialog Defaults to Desktop

Some files (e.g., new Office Word documents, Windows screenshots) default to obscure folders like “Documents,” “Pictures,” “Music,” or “Videos” in the save dialog. Each time you save, you have to click “Desktop”—a tedious extra step.

We can fix this by modifying the Registry so that save dialogs default directly to the Desktop.

Create a new Registry file with the following content:

1
2
3
4
5
6
7
8
9
10
11
12
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
"My Music"=hex(2):25,00,55,00,53,00,45,00,52,00,50,00,52,00,4f,00,46,00,49,00,\
4c,00,45,00,25,00,5c,00,4d,00,75,00,73,00,69,00,63,00,00,00
"My Pictures"=hex(2):25,00,55,00,53,00,45,00,52,00,50,00,52,00,4f,00,46,00,49,\
00,4c,00,45,00,25,00,5c,00,50,00,69,00,63,00,74,00,75,00,72,00,65,00,73,00,\
00,00
"My Video"=hex(2):25,00,55,00,53,00,45,00,52,00,50,00,52,00,4f,00,46,00,49,00,\
4c,00,45,00,25,00,5c,00,56,00,69,00,64,00,65,00,6f,00,73,00,00,00
"Personal"=hex(2):25,00,55,00,53,00,45,00,52,00,50,00,52,00,4f,00,46,00,49,00,\
4c,00,45,00,25,00,5c,00,44,00,65,00,73,00,6b,00,74,00,6f,00,70,00,00,00

Import the .reg file, then log off or restart.

From now on, most file save dialogs will default to the Desktop.

Hide: Common Folders in “This PC”

Folders like “Documents,” “Pictures,” “Music,” “Videos,” “3D Objects,” and “Downloads” appear in “This PC,” taking up valuable space in File Explorer’s upper section. If you find them unnecessary, you can hide them.

Modify the Registry to hide these folders.

The Registry file content is:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag]
"NoCustomize"=dword:00000001
"ThisPCPolicy"="Hide"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag]
"BaseFolderId"="{18989B1D-99B5-455B-841C-AB7C74E4DDFC}"
"ThisPCPolicy"="Hide"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag]
"BaseFolderId"="{33E28130-4E1E-4676-835A-98395C3BC3BB}"
"ThisPCPolicy"="Hide"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag]
"BaseFolderId"="{FDD39AD0-238F-46AF-ADB4-6C85480369C7}"
"ThisPCPolicy"="Hide"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag]
"BaseFolderId"="{374DE290-123F-4565-9164-39C4925E467B}"
"ThisPCPolicy"="Hide"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag]
"BaseFolderId"="{4BD8D571-6D19-48D3-BE97-422220080E43}"
"ThisPCPolicy"="Hide"

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}]

Import this .reg file, and these folders will be hidden in File Explorer.

Optimize: Show Full Right-Click Menu in Windows 11

The Windows 11 right-click menu has been widely criticized since its release. The secondary menu is particularly frustrating. A simple PowerShell command can revert it to the Windows 10 style.

Right-click the Start menu, select Windows PowerShell (Admin), enter the following, and press Enter:

1
2
3
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f
taskkill /F /IM explorer.exe
explorer.exe

File Explorer will restart automatically, and the right-click menu will be successfully modified.

Streamline: Remove “Home” from Windows 11 File Explorer Sidebar

Import the following Registry file to fix this.

Registry file content:

1
2
3
4
Windows Registry Editor Version 5.00
【HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer】
"HubMode"=dword:00000001
【-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace_36354489\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}】

Open File Explorer—the “Home” folder will be gone.

Streamline: Remove Unnecessary Right-Click Menu Items

The longer you use your computer, the more cluttered the right-click menu becomes. A tool called “Right-Click Menu Manager NET4.0.exe” can help you manage this complex structure.

There are many such tools, but after testing, I found “Right-Click Menu Manager NET4.0.exe” to be the most powerful and user-friendly.

The software is intuitive and requires little explanation.

Download link:

1
2
https://wwp.lanzn.com/iawIa1zjq62f
密码:4kcx

Windows 10 Optimization Tool

Developed by a renowned user from @吾爱破解, this Windows 10 optimization tool modifies the Registry in real-time. Note the “real-time” aspect—changes take effect immediately when you check an option, without needing to click “Save” (there isn’t one). To see the results, click “Restart File Explorer.”

How to use:

  1. Click: Read Current Configuration.
  2. Select your preferred settings.
  3. Restart File Explorer.

The “One-Click Configuration” option is a lazy mode that automatically applies settings you’re likely to prefer.

Download link:

1
2
https://wwp.lanzn.com/iKmjz1zjr65e
密码:1bb4

Block Windows Automatic Updates

Use a small tool called Wub to block Windows automatic updates.

It’s very straightforward to use, so I won’t elaborate here.

Download link:

1
2
https://wwp.lanzn.com/ilaP51zjsgaf
密码:fnuv

Settings to Enhance Windows System User Experience
https://en.lvlele.top/122-enhance-windows-system-settings/
Author
Lvlele 吕了了
Posted on
June 4, 2026
Licensed under