Right now i have it being install via RunOnceEx calling the hotfixes.cmd file.
RunOnceEx
CODE
REG ADD %KEY%\005 /VE /D "MDAC Hotfix" /f
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\hotfixes\hotfixes.cmd" /f
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\hotfixes\hotfixes.cmd" /f
Hotfixes.cmd
CODE
CLS
@echo off
ECHO.
ECHO Installing Q823718 Security Update for Microsoft Data Access Components
start /wait %systemdrive%\Install\hotfixes\Q823718.exe /C:"dahotfix.exe /q /n" /q
EXIT
@echo off
ECHO.
ECHO Installing Q823718 Security Update for Microsoft Data Access Components
start /wait %systemdrive%\Install\hotfixes\Q823718.exe /C:"dahotfix.exe /q /n" /q
EXIT
As you can see, i put Q823718.exe and hotfixes.cmd in $OEM$\$1\Install\hotfixes. Does anyone see what i am doing wrong or have any suggestions?