i am using
to add all DLLs in a certain directory to the assembly cache.
FindFirst $0 $1 "${GACPath}\*.dll"
;loop:
StrCmp $1 "" +7
nsExec::ExecToStack '"$R1\gacutil.exe" /i "${GACPath}\$1" /nologo'
Pop $8
Pop $9
DetailPrint "$1: $9"
FindNext $0 $1
Goto -6
;done:
Now sometimes that directory can have one or more subdirectoris that also contain dlls that need to be added.
Any ideas how i cold recurse into those subdirectories?
Thanks for your help.