I am trying to find the following information about my installed ram using vb.net 2017
Asked
Active
Viewed 464 times
-3

l-l
- 3,804
- 6
- 36
- 42

Daniel Stone
- 5
- 2
-
1https://www.google.co.uk/search?q=.NET+get+installed+RAM&oq=.NET+get+installed+RAM&aqs=chrome..69i57j69i60.2615j0j4&sourceid=chrome&ie=UTF-8 . So many existing answers. What did you research? What did you try? We're not a free human search engine. Some of the answers are C# but a converter will change them to VB.NET in a few seconds. The library calls will be the same since it's all .NET. – ADyson Mar 26 '18 at 14:55
-
Exact duplicate of https://stackoverflow.com/questions/6805497/how-to-find-out-how-much-ram-a-computer-has-in-vb-net?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa – Alessandro Mandelli Mar 26 '18 at 15:45
-
Possible duplicate of [How to find out how much ram a computer has in VB.net](https://stackoverflow.com/questions/6805497/how-to-find-out-how-much-ram-a-computer-has-in-vb-net) – IvanH Mar 27 '18 at 12:19
1 Answers
1
Dim ram As ULong = My.Computer.Info.TotalPhysicalMemory
By the rules, I should comment the code above, but really it's plain english...

Alessandro Mandelli
- 561
- 8
- 19