I am trying to set a variable by the name of SYSTEM_RAM to equal the output of the command below.
systeminfo |find "Available Physical Memory"
This will let me find the available ram, then display it to the viewer so they don't see the background work of the command. Also this will allow me to run math on the amount such as,
if %SYSTEM_RAM% > 100 then echo good to go
I want to check if %SYSTEM_RAM% is less than %RAM_AMOUNT% and if so then run code accordingly