Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Windows 11] Restore File Explorer Navigation Panel to Windows 10 Style (No third-party tools) #3133

Open
Obegg opened this issue Dec 28, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@Obegg
Copy link

Obegg commented Dec 28, 2024

Describe the solution you'd like

$TypedPaths_AccessControl = (Get-Acl 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths')
$TypedPaths_AccessControl.SetAccessRule((New-Object System.Security.AccessControl.RegistryAccessRule(
      [Security.Principal.WindowsIdentity]::GetCurrent().Name, 'FullControl', 'Deny')))
Set-Acl -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\TypedPaths' -AclObject $TypedPaths_AccessControl

Additional context

On Windows 11 file explorer has a different navigation panel than Window 10, this script restores the original navigation panel to be the same as Windows 10.

@Obegg Obegg added the enhancement New feature or request label Dec 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant