top of page

Windows 10 Registry Tweaks Github Work

Found in: onedrive-remover.ps1

[HKEY_CLASSES_ROOT\CLSID\018D5C66-4533-4307-9B53-224DE2ED1FE6]
"System.IsPinnedToNameSpaceTree"=dword:00000000

Note: This doesn't uninstall OneDrive; it just hides the annoying folder in the sidebar.

Found in: cortana-killer.reg

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"AllowCortana"=dword:00000000

Result: The search bar becomes a local file searcher only—no cloud nonsense.

Set-ItemProperty -Path "HKCU:\Software\Classes\CLSID\86ca1aa0-34aa-4e8b-a509-50c905bae2a2\InprocServer32" -Name "(Default)" -Value "" -Type String

(Note: requires restart or explorer restart) windows 10 registry tweaks github work

MIT — use at your own risk.


If you want, I can also generate the full .reg file contents for any of the categories above, or turn this into a ready-to-push README.md file. Found in: onedrive-remover


File: privacy/disable-cortana.reg

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"AllowCortana"=dword:00000000

Before diving into GitHub scripts, you need to understand the fundamentals. The Windows Registry is a hierarchical database. Every setting—from context menu entries to boot-up processes—lives in a "Key" (folder) with specific "Values" (data). Note: This doesn't uninstall OneDrive; it just hides

When you apply a "tweak," you are typically doing one of three things:

Let me know what's on your mind

Thanks for submitting! Expect a response between 24-48 hours.

Sutton's Sanctuary. All rights reserved. © 2026

bottom of page