@echo off
mode con cols=35 lines=8 & color 0A
title Remove system shortcut arrow
The echo program will remove the small arrows of system shortcuts for you
pause
echo Windows Registry Editor Version 5.00>>
echo [HKEY_CLASSES_ROOT\lnkfile]>>
echo "IsShortcut"=->>
echo [HKEY_CLASSES_ROOT\piffile]>>
echo "IsShortcut"=->>
echo [HKEY_CLASSES_ROOT\InternetShortcut]>>
echo "IsShortcut"=->>
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]>>
echo "IsShortcut"=->>
regedit/s
del
cls
echo is closing the display desktop process...
ping localhost -n 5 > nul
taskkill /f /im > nul
cls
echo is opening the display desktop process...
ping localhost -n 8 > nul
start "" "%windir%\"
cls
echo System shortcut arrow has been cleared!
pause