收藏本站 收藏本站
积木网首页 - 软件测试 - 常用手册 - 站长工具 - 技术社区
积木学院 > 程序开发 > DOS批处理 > 正文

用批处理去掉快捷方式上的小箭头图案的代码

来源:互联网 日期:2014-09-02 13:00
 
@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_ROOTpiffile /v IsShortcut /f
reg delete HKEY_CLASSES_ROOTlnkfile /v IsShortcut /f
taskkill /f /im explorer.exe
cls
explorer.exe
:b
reg add HKEY_CLASSES_ROOTlnkfile /v IsShortcut /t REG_SZ /f
reg add HKEY_CLASSES_ROOTpiffile /v IsShortcut /t REG_SZ /f
taskkill /f /im explorer.exe
cls
explorer.exe
:end
exit

制到记事本
文件后缀改为“ .bat "
双击运行 选择1删除 2恢复

推荐阅读

 

热点信息

 
强悍的草根IT技术社区,这里应该有您想要的!
Copyright © 2010 Gimoo.Net. All Rights Rreserved  京ICP备05050695号