I would like to get the full and available physical memory of Windows to store them in a SQL Server table or by CMD and send them in a report. Ideally, the CMD would show something like this
Memoria Total Memoria Disponible
3,509 1,352 MB
The systeminfo shows something that helps:
C:\Windows\system32>systeminfo |find "física"
Cantidad total de memoria física: 3,509 MB
Memoria física disponible: 1,352 MB
But I would like to see it in tabular format to be able to store it as records in SQL Server and send a report. Any ideas?