Detecting Installed .NET Framework Versions
Posted
by João Angelo
on Exceptional Code
See other posts from Exceptional Code
or by João Angelo
Published on Mon, 10 Jan 2011 23:38:16 +0000
Indexed on
2011/01/10
23:58 UTC
Read the original article
Hit count: 262
.NET
A new year is upon us and it’s also time for me to end my blogging vacations and get back to the blogosphere. However, let’s start simple… and short.
More specifically with a quick way to detect the installed .NET Framework versions on a machine. You just need to fire up Internet Explorer, write the following in the address bar and press enter:
javascript:alert(navigator.userAgent)
If for any reason you need to copy/paste the resulting information then use the next command instead:
javascript:document.write(navigator.userAgent)
© Exceptional Code or respective owner