I'm trying to use a batch program to install AMT SOL/LMS and HECI silently on our new Dell Optiplex 755. Following is my code. I downloaded the software from Dell website. Chipset1 is for chipset software installation utility and it seems working fine. When it ran it took about 10-15 seconds. But the other two will exit in a couple seconds though no errors logged. Any idea how to do it?
:IntelAMT
Echo Install Intel AMT Chipset Software
Echo Install Intel AMT Chipset Software >>%systemroot%setuplog1.log
Echo Installing Utility Driver.
c:
CD DriversDellGX755ChipsetChipset1
start /wait setup.exe -s -sms
Echo Utility Driver Installed, rc=%ERRORLEVEL% >>%systemroot%setuplog1.log;
Echo Installing Intel AMT SOL/ LMS Driver
c:
CD DriversDellGX755ChipsetChipset2
start /wait setup.exe -s -sms
Echo Intel AMT SOL/ LMS Driver installed, rc=%ERRORLEVEL% >>%systemroot%setuplog1.log
Echo Installing Intel AMT HECI Driver
c:
CD DriversDellGX755ChipsetChipset3
start /wait setup.exe -s -sms
Echo Intel AMT HECI Driver installed, rc=%ERRORLEVEL% >>%systemroot%setuplog1.log
Link Copied
For more complete information about compiler optimizations, see our Optimization Notice.