Net version

  • Thread starter Thread starter Guest
  • Start date Start date
Hello nospam,

Only reading keys/values from registry
See my article describing this there http://laflour.spaces.live.com/blog/cns!7575E2FFC19135B4!393.entry

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

n> Hello all,
n>
n> How can I tell what version of NET framework is installed?
n>
n> Thanks,
n> bruc
 
If you simply want to look at a computer and see if it has a .NET version,
instead of programatically (Michael Nemtsev's post) you can look at the
version folder(s) under %windir%/Microsoft .NET

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
 
Hello all,

How can I tell what version of NET framework is installed?

Thanks,
bruce

If you know for a fact that .NET is installed, and wish to check which
one, run this:

System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion();
 
Back
Top