I share with you a simple way to get system information using "WMIC" (windows management instrumentation command-line).
Obviously, it is very likely that these tricks are known, but may serve to Someone.
Sorry my poor English

You just need to create a bat or cmd file with the appropriate lines.
The following example shows how to get the BIOS serial number.
1) Create a bat file (eg biossn.bat) and write the following lines:
Code: Select all
@echo off
wmic /Output:"C:\Dir\nsbios.dat" bios get serialnumber
type "C:\Dir\nsbios.dat" > "C:\Dir\nsbios.txt"
exit
a) The path and file name in quotation marks may be others.
b) Because "wmic" writes the result file (nsbios.dat) using the UCS-2 Little Endian encoding, we could not read the file using NeoBook. Then simply use "Type" and ">" to read and then write using the UTF-8 encoding.
2) Now just simply use "RUN":
Code: Select all
Run "C:\Dir\nsbios.txt" "" "RunOnce+Wait+LoadComplete+Hidden" "" ""
It is much more information that can be obtained in this way. And, not only get information, also take action. And all without plugins!.

If you know something I do not know about this information, add it to improve it.
