The vb setup is actually not too bad to customise. I need to do the same thing and added
Sub CopyDatabase(cSrc As String, cDest As String)
Dim l As Long
Dim temp As String
temp = Dir(cSrc & "*.mdb"

Do Until temp = ""
l = CopyFileLocal(cSrc & "\" & temp, cDest & "\" & temp, -1&)
SetAttr cDest & "\" & temp, vbNormal
temp = Dir
If temp = "" Then Exit Do
Loop
End Sub
calling it as
CopySection strINI_FILES
INSERT AFTER THIS
cTemp = Trim$(gstrDestDir)
If Right$(cTemp, 1) <> "\" Then cTemp = cTemp & "\"
If gstrDataDestDir <> gstrDestDir Then
cTemp = Trim$(gstrDataDestDir)
Call CopyDatabase(gstrSrcPath, cTemp & "Database"

Else
cTemp = Trim$(gstrDestDir)
If Right$(cTemp, 1) <> "\" Then cTemp = cTemp & "\"
cTemp = cTemp & "Database\"
Call CopyDatabase(gstrSrcPath, cTemp)
Wise is a click and go programme. I can't customise it at all, not the cheap one anyway. It is good at installing files like msvcrt.dll etc which the vb one can't/won't do.