I'm sure a lot of people know how to clear Windows XP shortcuts, but Windows 7 doesn't necessarily know, and here's a nice bat script to clear windows 7 shortcuts.
The script reads as follows:
| The code is as follows |
Copy Code |
@echo off Mode con cols=35 lines=8 & color 0 A Title remove system shortcut Arrows Echo program will remove the small arrows for your system shortcuts Pause Echo Windows registr Y Editor Version 5.00>>1.reg Echo [Hkey_classes_rootlnkfile]>>1.reg Echo "Isshortcut" =->>1. Reg Echo [Hkey_classes_rootpiffile]>>1.reg Echo "Isshortcut" =->>1.reg Echo [Hkey_classes_ Rootinternetshortcut]>>1.reg Echo "Isshortcut" =->>1.reg Echo [Hkey_local_ Machinesoftwareclassesinternetshortcut]>>1.reg Echo "Isshortcut" =->>1.reg regedit/s 1.reg Del 1.reg CLS Echo is shutting down the display desktop process ... Ping Localhost-n 5 > nul taskkill/f/im Explorer.exe > nul CLS Echo is opening the show desktop process ... Ping Localhost-n 8 > nul Start "explorer.exe" "%windir%explorer.exe" CLS Echo system shortcut arrows cleared! Pause |