How to retrieve computer specification information?

Is it possible to retrieve the hardware/software information of a computer through Unreal Engine 4?
What I mean by hardware is things like finding out the currently used GPU, CPU, the amount of installed RAM etc.
What what I mean by software is things like the currently installed drivers, current version of the OS being used etc.

This information would be really useful to my game

1 Like

Hi,
If you are talking about performance profiling, then look into: link text

Using blueprint, If you are looking to get the platform/device information that your game is being installed on, then you can try ‘Get Platform Name’.

Using c++ you can try GetSystemInfo() …

Hope this helps.

Take a look at Engine\Source\Runtime\Core\Private\GenericPlatform\GenericPlatformCrashContext.cpp, all you want is here.

Well, I didn’t know about the answer before me and write my own bicycle plugin for Windows.
https://.com/SoulofAO/Get_INFO_About_Player_Computer_UE4