@echo off REM ***copy the iTunes shortcut to the "Media" folder and the current user's Quicklaunch*** xcopy "C:\Documents and Settings\All Users\Start Menu\Programs\iTunes\iTunes.lnk" "C:\Documents and Settings\All Users\Start Menu\Programs\Media\" /Y xcopy "C:\Documents and Settings\All Users\Start Menu\Programs\iTunes\iTunes.lnk" "C:\Documents and Settings\%username%\Application Data\Microsoft\Internet Explorer\Quick Launch\" /Y REM ***copy the Quicktime shortcut to the "Media" folder*** xcopy "C:\Documents and Settings\All Users\Start Menu\Programs\QuickTime\QuickTime Player.lnk" "C:\Documents and Settings\All Users\Start Menu\Programs\Media\" /Y REM ***Delete the iTunes and Quicktime folders from the Start menu*** rd "C:\Documents and Settings\All Users\Start Menu\Programs\iTunes" /s/q rd "C:\Documents and Settings\All Users\Start Menu\Programs\QuickTime" /s/q