1 scroll down to the xcopy commands and change Name into the one that shows on your computer 2 scroll down to the xcopy commands and change your toon into the one your playing with 3 delete these 3 lines and save it as BAT file @echo off echo. echo. COLOR C1 TIME [/T : time] goto menu :menu echo. echo. echo. echo. echo. echo Make your choice: echo. echo. echo. echo 1 User to main echo. echo 2 Main to user echo. echo 3 Quit echo. :choice echo. echo. echo. set /P C= [ 1,2,3]? if "%C%"=="1" goto User to main if "%C%"=="2" goto Main to user if "%C%"=="3" goto Quit goto choice :Main to user @echo off echo File copied to User folder echo. xcopy /e /i /l /y "Driveletter:\Documents and Settings\name\My Documents\My Games\Titan Quest - Immortal Throne\SaveData\Main\your Toon" "D:\Documents and Settings\name\My Documents\My Games\Titan Quest - Immortal Throne\SaveData\user\your Toon" goto menu :User to main @echo off echo File copied to Main folder echo. xcopy /e /i /l /y "D:\Documents and Settings\name\My Documents\My Games\Titan Quest - Immortal Throne\SaveData\user\your toon" "D:\Documents and Settings\Geeroms\My Documents\My Games\Titan Quest - Immortal Throne\SaveData\main\your tone" goto menu :Quit exit :end