最近有朋友在Win10系统下遇到开始菜单右键点击无效的问题,这里教大家做一个批处理,可瞬间解决问题。
解决步骤:
1、首先新建一个txt文件后输入以下:
@echo off
color 2
reg add HKCR\lnkfile /v IsShortcut /f
reg add HKCR\piffile /v IsShortcut /f
reg add HKCR\InternetShortcut /v IsShortcut /f
taskkill /f /im explorer.exe && explorer
2、修改拓展名为bat后(也就是把TXT文件改成批处理文件),右键以管理员身份运行即可。