I am using cleanup.cmd to move and delete various shortcuts - from an edited script posted on these forums. Here is a snippet of my code: set AUStart=%AllUsersProfile%\Start Menu\Programs set UserStart=%UserProfile%\Start Menu\Programs set UserQL=%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch set AUDesk=%AllUsersProfile%\Desktop set UserDesk=%UserProfile%\Desktop REM :: Make New Folders :: MD "%AUStart%\Utilities" MD "%AUStart%\Utilities\Administrative Tools" MD "%AUStart%\Utilities\Windows System Tools" REM :: Move/Copy Folders :: COPY /Y "%AUStart%\Administrative Tools" "%AUStart%\Utilities\Administrative Tools" MOVE /Y "%AUStart%\Accessories\System Tools\*" "%AUStart%\Utilities\Windows System Tools" MOVE /Y "%AUStart%\jv16 Powertools\jv16 PowerTools.lnk" "%AUStart%\Utilities\Windows System Tools" REM :: Move/Copy Shortcuts :: DEL /Y "%AUStart%\Adobe ImageReady CS.lnk" DEL /Y "%AUStart%\Adobe Help Center.lnk" DEL /Y "%AUStart%\Adobe Bridge.lnk" DEL /Y "%AUStart%\Stop StartupMonitor.lnk" MOVE /Y "%AUStart%\CCleaner\CCleaner.lnk" "%AUStart%\" MOVE /Y "%AUStart%\Crimson Editor\Crimson Editor.lnk" "%AUStart%\" MOVE /Y "%AUStart%\DVD Decrypter\DVD Decrypter.lnk" "%AUStart%\" MOVE /Y "%AUStart%\Elaborate Bytes\CloneDVD2\CloneDVD2.lnk" "%AUStart%\" MOVE /Y "%AUStart%\FlashGet\FlashGet.lnk" "%AUStart%\" MOVE /Y "%AUStart%\Kaspersky Anti-Virus Personal\Kaspersky Anti-Virus Personal.lnk" "%AUStart%\" My question is, what command would I use to rename specific shortcuts? For example: MOVE /Y "%AUStart%\Kaspersky Anti-Virus Personal\Kaspersky Anti-Virus Personal.lnk" what command would I use to rename that to Kaspersky.lnk? before anyone says anything, I attempted to search, using these search strings: +renaming +start +menu +shortcuts +renaming +startmenu +shortcuts +renaming +shortcuts +rename +startmenu +shortcuts +rename +shortcuts but none of these searches returned anything useful... thanks for anyones assisstance