@echo off Title Deleting crappy shortcuts ECHO Deleting start menu shortcuts... RD /S /Q "%AllUsersProfile%\Start Menu\Programs\PrintMe Internet Printing" DEL "%AllUsersProfile%\Start Menu\Windows Update.lnk" DEL "%AllUsersProfile%\Start Menu\Set Program Access and Defaults.lnk" DEL "%AllUsersProfile%\Start Menu\Windows Catalog.lnk" DEL "%AllUsersProfile%\Start Menu\Programs\Windows Movie Maker.lnk" DEL "%AllUsersProfile%\Start Menu\Programs\Adobe Reader 6.0.lnk" DEL "%UserProfile%\Start Menu\Programs\Windows Media Player.lnk" DEL "%UserProfile%\Start Menu\Programs\Remote Assistance.lnk" ECHO Deleting desktop shortcuts... DEL "%AllUsersProfile%\Desktop\Adobe Reader 6.0.lnk" DEL "%AllUsersProfile%\Desktop\CloneCD.lnk" DEL "%AllUsersProfile%\Desktop\PowerDVD.lnk" DEL "%AllUsersProfile%\Desktop\ISOBuster.lnk" DEL "%AllUsersProfile%\Desktop\Nero StartSmart.lnk" DEL "%AllUsersProfile%\Desktop\DAEMON Tools.lnk" DEL "%AllUsersProfile%\Desktop\BSplayer.lnk" DEL "%UserProfile%\Desktop\Ad-Aware 6.0.lnk" DEL "%UserProfile%\Desktop\CDex.lnk" DEL "%UserProfile%\Desktop\Winamp.lnk" ================================================================ The path for the local All Users profile path is determined by two registry entries. The following registry entry sets the name of the folder in which the All Users profile is stored: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\AllUsersProfile Reg_Sz Default value = "All Users" The following registry entry sets the path in which the All Users folder is stored: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\ProfilesDirectory Reg_Expand_Sz Default value = "%SystemDrive%\Documents and Settings"