Jan 15 2009 4:14PM GMT
Posted by: Dave Raffo
Add new tag, Batch, Favorites, Group Policy, Internet Explorer, Windows
Windows Batch File to Backup Internet Explorer Favorites
Posted by: Dave Raffo
Here is a quick batch file I wrote to copy Microsoft Internet Explorer Favorites to another location. Fill in the BACKUPPATH variable and stick it in a Group Policy logon (or logoff) script to make sure that users have a backup of the bookmarks.
@echo off rem ----------------------------------------------------------------- rem backup-iefavs.bat rem Copies Internet Explorer Favorites to another location rem written by Spencer Kuziw (s.kuziw-at-epic-dot-ca) rem ----------------------------------------------------------------- rem VARIABLES rem Path to Backup Location (no quotes necessary for log names) rem can be a local path or UNC set BACKUPPATH=%USERPROFILE%\Desktop\Very Long Name This Is :copy xcopy "%USERPROFILE%\favorites" "%BACKUPPATH%\favorites" /i /t /y xcopy "%USERPROFILE%\favorites" "%BACKUPPATH%\favorites" /e /i /y :eof




