This post originated from an RSS feed registered with .NET Buzz
by Peter G Provost.
Original Post: Silent Install of .NET Runtime
Feed Title: Peter Provost's Geek Noise
Feed URL: /error.aspx?aspxerrorpath=/Rss.aspx
Feed Description: Technology news, development articles, Microsoft .NET, and other stuff...
I had to find this for someone today, so I thought I'd post it here so it doesn't
get lost:
dotnetfx.exe /q /c:"install.exe /q"
What is happening here is the wrapper exe (dotnetfx.exe) is being called with two
parameters. The first parameter tells it to run silently. The second tells it to run
a specific command after extracting the contents. We then pass the silent flag to
the "inner" installer.
Make sense? It doesn't matter, because it works. ;-)