Being an old DOS guy, who already uses a batch to back up the history, I
would appreciate that batch. My batch uses a rolling set of backup files,
but just for history.
Lou
Hi Lou!
Here's that batch file you asked for. Please notice that even though
Firefox creates a randomly-named folder with each new installation,
this batch file will STILL work as it is and you'll still get your
entire configuration exactly as you back it up without having to rename
any files, folders or profiles.
All you need to do is rename the text "xxxxxxxx.default" below with the
profile name of your current Firefox profile folder.
And a quick head's up that I have Windows 2000 and a friend told me
that my batch file commands are sometimes different from other versions
of DOS and Windows.
If you know of a combination of batch commands that will do the same
job with less text, please let me know. I'm always interested in leaner
batch files!
Enjoy!
*****************Top of Page**************************
rd "C:\Documents and Settings\Administrator\Application Data\Mozilla"
/s /q
mkdir "C:\Documents and Settings\Administrator\Application
Data\Mozilla"
xcopy ".\Mozilla" "C:\Documents and Settings\Administrator\Application
Data\Mozilla" /s /e
echo Y|copy "D:\Backups\Data\bookmarks.html" "C:\Documents and
Settings\Administrator\Application
Data\Mozilla\Firefox\Profiles\xxxxxxxx.default"
*****************Bottom of Page**************************