You can find out the amount of memory on your comuter and more by using the ComputerInfo class in Microsoft.VisualBasic.Devices. Use: ComputerInfo cf = new ComputerInfo(); ulong memory = cf.AvailablePhysicalMemory; To find find out how much memory you...