newechoes/src/content/windows/解决Win11右键菜单问题.md
lsy 16125a580c 重构内容处理并改进构建配置
- 更新 Vite 配置,使用手动块拆分来提高性能
- 修改内容配置以处理特殊文件命名和路径解析
- 更新导航链接并删除未使用的页面
- 改进文章 API 和路由以支持动态路径处理
- 简化内容结构并添加用于路径操作的实用函数
2025-03-09 01:11:43 +08:00

24 lines
691 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "解决 Win11 右键菜单问题"
date: 2021-12-11T18:53:00Z
tags: []
---
首先,按下 Win+X 打开 Windows PowerShell管理员
1. 切换回经典右键菜单:
```powershell
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
```
2. 恢复到新版右键菜单(不建议执行):
```powershell
reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
```
然后,按下 Win+E 打开 Windows 资源管理器,接着按下 Ctrl+Shift+Esc 打开任务管理器,找到并重启 Windows 资源管理器。
现在,右键单击应该已经恢复正常了。