$serverfiles='\\NAS1\DFS\SOFTWARE\APPLICATIONS\TEMPLATES'
$destination='%appdata%\MICROSOFT\TEMPLATES'
$templates=enumdir('$serverfiles')
FOR EACH $file in $templates
IF NOT EXIST('$destination\$file')
COPY '$serverfiles\$file' '$destination'
ENDIF

Thanks for the help. Lookging through other posts trying to gget a better understanding.