Hello again. I want to make a batch script that will backup some information and I will integrate this script in a boot cd like hiren's. The purpose is to boot the cd if the os is not working anymore and with one click to back-up my personal information. I don't want to browse folders and extract those files one by one. By reversing it's actions I will make a second script that will deploy my files in the right folders after os reinstall. I don't want to a make an os image since I could use that image on a similar pc and I don't want my info go there. About the script: - I managed to make it back-up my ppoe info file, but on a clean install even if I'm deploying the needed file in it's place it's not working. I don't know if the script should make some registry entries as well. Ex: the user and pass are stored in a .pbk file. If I back-up it and after os reinstall I copy it where it should be the ppoe connection is not starting. I presume it's something more to be done, maybe in the registry. So it's not working for the moment and it's useless. I will remake the connection manually. - I managed to make it back-up some fix name folders from desktop that will always be there. Ex: pics, notes. And a download folder which has also a fixed name and path. - I managed to back-up from firefox the entire PROFILES folder, but I need to back-up just 3 files (1 with the password and 2 for the bookmarks) from each of the 2 profiles folders that I'm having. One profile contains bookmarks and passwords and the other just bookmarks which are the same for each profile.The only problem is that the profile names are variable: XXXXXXXX.default. So, I need a script that will access the %AppData%\Mozilla\Firefox\Profiles\ path and without knowing from the start what are the profiles names to go inside them and back up from each, 3 files and save them separately. Of course from the second profile 1 file (with password) will be missing. After reversing, the script will deploy those 3 files in every of the 2 existing profiles without knowing from the start the name of the profiles. From the second profile I will delete manually the password file. Even if I have to do some manually operation after os reinstall the main purpose of the script is to back-up my files with one click. So, it's possible? Thanks.