Visual C++ 2005 SP1 & Visual C++ 2010 are installed as you would expect:
vcredist_86.exe /qFor 2008 I eventually used this command:
vcredist_x86.exe /q:a /c:"vcredist_x86.exe /q"Don't really see why they had to change this but it doesn't work with the usual switches.
Then we need to install .NET 4. This installation requires a reboot and the only way I was able to make this install without stopping my Task Sequence is by creating a .cmd file with the following content:
dotNetFx40_Full_x86_x64.exe /q /norestartI don't know why I had to create the batch file but it doesn't work if you use this command in MDT 2010.
As all the prerequisites are installed, you can now install Autodesk Design Review. Get the .msi from their site and use this command to install it with MDT 2010:
MsiExec.exe /i SetupDesignReview2012.msi ADSK_DESKTOPSHORTCUT_1=0 ADR_DONOTSHOWAGAIN=1 ADR_NEXT_INITIAL_CHECK=1 PREFERENCELOCKED=1 /qnThis will disable update checks, will not create the desktop shortcut and disable some other crap.