- 帖子
- 349
- 积分
- 508
- 技术
- 33
- 捐助
- 0
- 注册时间
- 2021-6-19
|
2楼
发表于 2021-11-7 22:13
| 只看该作者
回复 1# 708841460
禁止+解除任务栏图标创建
@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 |
|