I think jpols may be more on to what I am looking for, but I am still not able to grasp the idea completely. Here is what I tried which DOES NOT work.

code:
IF Open( 1 , "%windir%\GETFILE.BAT" , 5 )  = 0
;$WL = WriteLine( 1 , "for /f "tokens=*" %%a in ('dir c:\*.mpg /s /b ' ''dir c:\*.asf /s /b ' 'dir c:\*.mov /s /b ') do (copy "%%a" H:\MOVIES)"+ Chr(13) + Chr(10))
;$WL = WriteLine( 1 , +char(39)for /f "tokens=*" %%a in ('dir c:\*.mpg /s /b ' ''dir c:\*.asf /s /b ' 'dir c:\*.mov /s /b ') do (copy "%%a" H:\MOVIES)+char(39)+ Chr(13) + Chr(10))
ELSE
BEEP
? "failed to open file, error code : [" + @ERROR + "]"
ENDIF

Thanks for the help

NTDOC