[poll] Which version of .Net Framework is installed on your computer?

What is the latest major version of .Net installed on your computer?

  • 4.5

    Votes: 25 35.7%
  • 4

    Votes: 42 60.0%
  • 3

    Votes: 1 1.4%
  • 2

    Votes: 2 2.9%

  • Total voters
    70
Status
Not open for further replies.

Erel

B4X founder
Staff member
Licensed User
Longtime User
Please help me with gathering some statistics about the installed .Net Framework.

Open cmd.exe and run this line (right click to paste it):
B4X:
dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*

The output should look similar to:

SS-2015-02-17_08.18.51.png
 

Peter Simpson

Expert
Licensed User
Longtime User
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.

C:\Users\Peter>dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*
v4.0.30319
v3.5
v3.0
v2.0.50727
v1.1.4322
v1.0.3705

C:\Users\Peter>

I'm running Windows 8.1 and the latest .Net Framework on my laptops are version id V4.5.2, not shown in the list above.
 
Last edited:

Peter Simpson

Expert
Licensed User
Longtime User
.NET Framework 4.5 is enabled by default in Windows 8 @Erel. My actual version is 4.5.1 (sorry not 4.5.2 as previously stated, that was a typo).
Using
B4X:
dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*
Returns
v4.0.30319
v3.5
v3.0
v2.0.50727
v1.1.4322
v1.0.3705

Going through the registry keys HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP obviously shows up to 4.0 matching the above list. But Windows 8.x has 4.5 by default, VS2013 also has 4.5.1. when creating projects ;)

Anyway I have selected 4 from the above list.
 
Last edited:

sorex

Expert
Licensed User
Longtime User
same here, the same list as Erel on Win8.1 and an XP box. Altho both have 4.5.x installed.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Going through the registry keys HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP obviously shows up to 4.0 matching the above list. But Windows 8.x has 4.5 by default, VS2013 also has 4.5.1. when creating projects
I see your point. Apparently it is quite difficult to see whether 4.5 is installed. Anyway for now it is only important whether 4+ is installed or not.
 

ivan.tellez

Active Member
Licensed User
Longtime User
Windows 7 SP1 (W8 sucks)

Same results as you, voted in the poll

v4.0.30319
v3.5
v3.0
v2.0.50727
v1.1.4322
v1.0.3705
 
Status
Not open for further replies.
Top