I would like to backup shell folders on my XP machine. It is useful for me because when I reinstall XP I can just restore those backed up shell folders.
Can you guys get me started or point me in the right direction?
'*************************************
' Author:
'
' This script backs up shell folders.
'
' Source:
' Destination:
'
'-------------------------------------
'Rev # Changes
'-------------------------------------
'1.0 started
'*************************************
'*********
'VARIABLES
'*********
dim filesys
dim source
dim destination
source="C:\Documents and Settings"
destination="C:\Temp" 'will change in future revisions
'*********
'OBJECTS
'*********
set filesys=CreateObject("Scripting.FileSystemObject")
if filesys.FolderExists(source) Then
filesys.MoveFolder source, destination
MsgBox("Folder Moved")
End if