Trying to use this method to pull a couple of pieces of info & write it to an external file.
My command line now is
SYSTEMINFO /S MyComputerName /FO CSV /NH >> sysinfo.csv
let's say to start, I'd like OS name I tried this but not quite working...
SYSTEMINFO /S MyComputerName /FO CSV /NH | findstr "OS\ Name" | findstr /v BIOS >> sysinfo.csv
seems to still be pulling all system info. Any suggestions / corrections? thanks!