I believe I could do:
ExecWait '"XCOPY" "Source-Folder" "Dest-Folder" /e /i /y' But is there an built in command I can put in my installer to do the same thing?4 posts
ExecWait '"XCOPY" "Source-Folder" "Dest-Folder" /e /i /y' But is there an built in command I can put in my installer to do the same thing?
CopyFiles /SILENT "SourceDir\*.*" "DestDir\"
RMDir /r "SourceDir"
ClearErrors
${If} ${FileExists} "$0\*.*" ;Folder $0 exists
CreateDirectory $INSTDIR
CopyFiles /SILENT "$0\*.*" "$INSTDIR"
RMDir /r $0
${Else} ;Folder $0 does not exist
;-----
${Endif}