Windows 11 恢復(fù)經(jīng)典文件資源管理器及右鍵菜單
- 轉(zhuǎn)載大神的文章
關(guān)鍵是這幾個(gè)腳本
# Run PowerShell as Administrator
# 啟用 Windows 資源管理器 with Ribbon UI
New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions" -Name "Blocked" -ErrorAction SilentlyContinue
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" -Name "{e2bf9676-5f8f-435c-97eb-11607a5bedf7}" -PropertyType "String" -Force
spps -Name explorer
# 恢復(fù) Win 11 新資源管理器
Remove-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" -Name "{e2bf9676-5f8f-435c-97eb-11607a5bedf7}" -ErrorAction SilentlyContinue
Stop-Process -Name explorer
# 恢復(fù)經(jīng)典右鍵菜單
New-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" -Name "InprocServer32" -Value $null -ErrorAction SilentlyContinue
New-ItemProperty -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -Name "(default)" -Value $null -PropertyType "String" -ErrorAction SilentlyContinue -Force
Stop-Process -Name explorer
# 恢復(fù) Win 11 新版右鍵菜單
# Remove-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" -ErrorAction SilentlyContinue
Clear-Item -Path "HKCU:\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32"
spps -Name explorer
文章來源地址http://www.zghlxwxcb.cn/news/detail-540700.html
文章來源:http://www.zghlxwxcb.cn/news/detail-540700.html
到了這里,關(guān)于【win11】Windows 11 恢復(fù)經(jīng)典文件資源管理器及右鍵菜單的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!