Until you have the time or willingness to learn how to use UDFs it may be easier for you to do something like what Jens suggested above. Just change the below code to match your server and share. Can add any other files by adding them to the $a list. This should work for you aslong as you dont have more than one source or destination.

code:
 
If Ingroup ("CINEVERYONE")
$source='\\server\share\TEMPLATES\'
$destination='%appdata%\MICROSOFT\TEMPLATES\'

$a='1CN_ENVBLANK.DOT','1CN_ENVELOPE.DOT'

for each $file in $a
if not exist($destination+$file)
? "Copying "+$file
copy $source+$file $destination
else
? $file+" already exists"
endif
next
Endif



[ 07. March 2003, 03:33: Message edited by: CitrixMan ]