Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drkain/better-windows-11
A personal collection of tools and guides I've used to optimize and un-fuck Windows 11. Includes privacy tweaks and other QOL improvements.
https://github.com/drkain/better-windows-11
antispyware cortana debloat imageglass optimize privacy shutup10 telemetry windows windows-11
Last synced: about 1 month ago
JSON representation
A personal collection of tools and guides I've used to optimize and un-fuck Windows 11. Includes privacy tweaks and other QOL improvements.
- Host: GitHub
- URL: https://github.com/drkain/better-windows-11
- Owner: DrKain
- Created: 2023-03-05T09:22:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-12T00:14:10.000Z (over 1 year ago)
- Last Synced: 2024-10-04T22:49:55.673Z (about 2 months ago)
- Topics: antispyware, cortana, debloat, imageglass, optimize, privacy, shutup10, telemetry, windows, windows-11
- Homepage:
- Size: 397 KB
- Stars: 28
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
*I recently bought a laptop that runs Windows 11, it was the only option at the time or I would have stuck with 10. I had a feeling it would be bad, but it was much worse than I expected. If Windows 7 was still supported by modern apps I'd still be using that.*
*This readme/repo is a personal collection of tools and guides I've used to optimize and un-fuck Windows 11. Includes privacy tweaks and other QOL improvements.*
--------------------------------------------------------------------
Disable telemetry/tracking/spyware/cortana ect
*This is an excellent all-in-one tool that works with both Windows 10 and Windows 11. It has a large number of features that I consider to be essential for any modern Windows system. See the website for more info.*
1. Download [ShutUp10++](https://www.oo-software.com/en/shutup10)
2. Run the file
3. Click "Actions" -> "Apply only recommended settings"
4. Wait 5 seconds then close the app--------------------------------------------------------------------
Improved image viewer
*The "Photos" app bundled with Windows 11 is a massive downgrade with very limited features and poor optimization. ImageGlass is an excellent, lightweight image viewer with support for 80+ formats and includes many other great features. It's not essential, but highly recommended*
1. Download [ImageGlass](https://imageglass.org/)
2. Run/Install--------------------------------------------------------------------
Unable to unpin one-drive from file view
1. Click on Start, search for command prompt
2. Right-click and select "Run as Administrator"
3. Paste the following command:
```
del "%AppData%\Microsoft\Windows\Recent\AutomaticDestinations\f01b4d95cf55d32a.automaticDestinations-ms"
```--------------------------------------------------------------------
Disable "Group By" for all folders
![group-by.png](images/group-by.png)
1. Download [WinSetView](https://github.com/LesFerch/WinSetView)
2. Extract, run and hit "Submit"--------------------------------------------------------------------
Restore old context menu
*For some reason Windows 11 downgraded the context menu, showing a "simplified" version until you click "show more". This tweak ensures the full context menu is always shown.*
1. Click on Start, search for command prompt
2. Right-click and select "Run as Administrator"
3. Paste the following command:
```
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f
```
4. Open task manager (Ctrl + Shift + Esc)
5. Open "details" view
6. Right click `explorer.exe` and select "End Task"
7. Click "run new task" at the top of the window
8. Type `explorer.exe` and hit enter
--------------------------------------------------------------------
Disable snap layouts on hover
Some people find this feature useful, some may not. I found the popups to be annoying so here's how to disable it:
![snap-windows.png](images/snap-windows.png)
1. Open start menu
2. Search for `multitasking settings`
3. Expand "Snap Windows" to show all options
4. Uncheck "Show snap layouts when I hover over a window's maximize button"Optional: You may also want to uncheck "Show snap layouts when I drag a window to the top of the screen"
--------------------------------------------------------------------
Disable checkboxes in file explorer
![check-boxes.png](images/check-boxes.png)
1. Open start menu
2. Search "File Explorer Options"
3. Click on the "View" tab
4. Locate "Use check boxes to select items" and disable it
5. Press "Apply"--------------------------------------------------------------------
Remove language selector from task bar
Very small annoyance. This simply removes the language selector from the task bar. It's not something I use or want, so hiding it saves a small amount of space for other apps.
![lang-selector.png](images/lang-selector.png)
1. Open start menu
2. Search "Advanced keyboard settings"
3. Check "Use the desktop language bar when it's available"
4. Open "Language bar options"
5. Select "Hidden" under "Language Bar"
6. Apply--------------------------------------------------------------------
Disable web results in search
This disables the "Search with Bing" garbage that pops up when I am trying to find a file or app **on my computer**. If I wanted to search the web I would open the browser, I don't know why Microsoft added such a stupid feature. There's also several privacy concerns with important file names being sent to their search engine without permission.
![DisableSearchBoxSuggestions-preview.png](images/DisableSearchBoxSuggestions-preview.png)
1. Open start menu
2. Search "regedit" and open the Registry Editor
3. Navigate to `HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows`
4. If the `Explorer` folder does not exist:
- Right click the `Windows` folder and click `New -> Key`
- Type `Explorer` and confirm
5. Right click the `Explorer` folder and click `New -> DWORD (32-bit) Value`
6. Set the value name to `DisableSearchBoxSuggestions` and value data to `1`
7. Press OK and restart your computerIf done correctly, the registry entry should look like this: [verify](images/DisableSearchBoxSuggestions-verify.png)
--------------------------------------------------------------------