I believe that silent installations are best in the long run;
Basically whenever you have a .msi file (Microsoft installer), you have the privilege to see the options available by use /? parameter.
sampleinstaller.msi /?
I have used the same help command and execute the below steps one after the other in order to install Dynamics AX Client in Silent mode. Of course, once you get this far, you can always script it in better way...
// Copy of files from FileShare to Local folder
xcopy "\\SHARE\AX2012 R3 RTM + CU8" D:\ /E /H
//Silent install - MSChart
"D:\AX2012 R3 RTM + CU8\MSChart.exe" /q /norestart
//Silent install - SQLSysClrTypes2012
"D:\AX2012 R3 RTM + CU8\SQLSysClrTypes2012.msi" /quiet
//Silent install - Report viewer
"D:\AX2012 R3 RTM + CU8\ReportViewer2012.exe" /q:a /c:"install.exe /q"
//And Finally Silent Install - Dynamics AX client component
"D:\AX2012 R3 RTM + CU8\setup.exe" RunMode=Custom AcceptLicenseTerms=1 HideUi=1 ByPassWarnings=1 InstallClientUi=1 ClientConfigFile="D:\AX2012 R3 RTM + CU8\UAT.axc" ClientLanguage=en-us ConfigurePreRequisites=1 LogDir="D:\logs"
Hope this helps. Happy coding!
Basically whenever you have a .msi file (Microsoft installer), you have the privilege to see the options available by use /? parameter.
sampleinstaller.msi /?
I have used the same help command and execute the below steps one after the other in order to install Dynamics AX Client in Silent mode. Of course, once you get this far, you can always script it in better way...
// Copy of files from FileShare to Local folder
xcopy "\\SHARE\AX2012 R3 RTM + CU8" D:\ /E /H
//Silent install - MSChart
"D:\AX2012 R3 RTM + CU8\MSChart.exe" /q /norestart
//Silent install - SQLSysClrTypes2012
"D:\AX2012 R3 RTM + CU8\SQLSysClrTypes2012.msi" /quiet
//Silent install - Report viewer
"D:\AX2012 R3 RTM + CU8\ReportViewer2012.exe" /q:a /c:"install.exe /q"
//And Finally Silent Install - Dynamics AX client component
"D:\AX2012 R3 RTM + CU8\setup.exe" RunMode=Custom AcceptLicenseTerms=1 HideUi=1 ByPassWarnings=1 InstallClientUi=1 ClientConfigFile="D:\AX2012 R3 RTM + CU8\UAT.axc" ClientLanguage=en-us ConfigurePreRequisites=1 LogDir="D:\logs"
Hope this helps. Happy coding!