Thanks for your help This is what I came with !! but it's not working as it suppose to ... it looks fine for me !! ---------------------------------------------- @echo off echo This Tool will copy your files quickly from one account to another. @echo off echo enter your old account name. set /p variable1= echo You have entered : %variable1% @echo off echo enter your new account name. set /p variable2= echo You have entered : %variable2% pause MOVE /y "%homedrive%Documents and Settings\%variable1%" "%homedrive%Documents and Settings\%variable2%" --------------------------- Anybody can add something to fix it Thanks