I am using the NSIS installer and as part of my setup I need to install the Access Database Engine. This part I have working.
What I can't seem to be able to work out how to do is check if the Access Database Engine (32 or 64 bit) is installed already - I don't know if NSIS can do that? Does anyone know?
The NSIS script for Access Database Engine currently does this:-
${If} ${RunningX64}
HideWindow
File "access64.exe"
ExecWait "$INSTDIR\access64.exe"
BringToFront
${Else}
HideWindow
File "access32.exe"
ExecWait "$INSTDIR\access32.exe"
BringToFront
${EndIf}
access32.exeoderaccess64.exeinstalled. Or are there registry entries from the access database engine? Then check if there are one. - ikreb