I am installing a .NET 2.0 app with Inno using the following line from my script:

Code:
[Run]
Filename: {tmp}\dotnetfx.exe; Parameters: "/q:a /c:""install /q"""; StatusMsg: Installing Microsoft .NET Framework V2.0...; Flags: shellexec runhidden waituntilterminated; Check: DotNet20Required
As the .NET framework can take some minutes to install, I am wondering if having the 'silent' install command line of dotnetfx.exe is a good idea as there is not a lot of feedback for the user that anything is happening, other than hard disk activity.

Just curious to know what command line parameters and Inno flags anyone else is using when deploying the framework.


Thanks for any comments!