用批处理去掉快捷方式上的小箭头图案的代码
时间:2021-06-18 08:45:18|栏目:DOS/BAT|点击: 次
复制代码 代码如下:
@echo off
color 02
echo 请选择要执行的操作(1-删除,2-恢复,3-退出)
set choice=
set /p choice=请选择(1/2/3)按回车执行:
if /i '%choice%'=='1' goto a
if /i '%choice%'=='2' goto b
if /i '%choice%'=='3' goto end
:a
reg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /f
reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f
taskkill /f /im explorer.exe
cls
explorer.exe
:b
reg add HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /t REG_SZ /f
reg add HKEY_CLASSES_ROOT\piffile /v IsShortcut /t REG_SZ /f
taskkill /f /im explorer.exe
cls
explorer.exe
:end
exit
制到记事本
文件后缀改为“ .bat "
双击运行 选择1删除 2恢复
上一篇:Windows系统自动连接网络共享打印机BAT脚本分享
栏 目:DOS/BAT
下一篇:Windows系统清理QQ聊天记录、反监控QQ聊天的BAT脚本分享
本文标题:用批处理去掉快捷方式上的小箭头图案的代码
本文地址:http://www.codeinn.net/misctech/143987.html