欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

windows7系统去除快捷方式小箭头BAT脚本分享

程序员文章站 2022-06-24 15:58:20
相信很多人都知道怎么清除windows xp的快捷方式,但windows 7的不一定知道,下面给大家带来个不错的清除windows 7快捷方式的bat脚本. 脚本内容如下...

相信很多人都知道怎么清除windows xp的快捷方式,但windows 7的不一定知道,下面给大家带来个不错的清除windows 7快捷方式的bat脚本.

脚本内容如下:

复制代码 代码如下:

@echo off
mode con cols=35 lines=8 & color 0a
title 去除系统快捷方式箭头
echo 程序将为你去除系统快捷方式的小箭头
pause
echo windows registry editor version 5.00>>1.reg
echo [hkey_classes_root\lnkfile]>>1.reg
echo "isshortcut"=->>1.reg
echo [hkey_classes_root\piffile]>>1.reg
echo "isshortcut"=->>1.reg
echo [hkey_classes_root\internetshortcut]>>1.reg
echo "isshortcut"=->>1.reg
echo [hkey_local_machine\software\classes\internetshortcut]>>1.reg
echo "isshortcut"=->>1.reg
regedit/s 1.reg
del 1.reg
cls
echo 正在关闭显示桌面进程...
ping localhost -n 5 > nul
taskkill /f /im explorer.exe > nul
cls
echo 正在开启显示桌面进程...
ping localhost -n 8 > nul
start "explorer.exe" "%windir%\explorer.exe"
cls
echo 系统快捷方式箭头已清除!
pause