I am trying to get all the system information from Wmic but im not sure of how to get all the information without typing in lots and lots of wmic commands is there a fast way to get all the wmic information?
Thanks ~Batchcc
Get all Wmic information quickly
Moderator: DosItHelp
-
- Posts: 36
- Joined: 02 May 2016 18:59
Re: Get all Wmic information quickly
Code: Select all
wmic os>info.txt
Is this not what you're looking for?
Re: Get all Wmic information quickly
Thanks. Im not sure if this works because I get an error but ill try it on another computer as soon as I can
Re: Get all Wmic information quickly
Works for me. Maybe you want to change the format though.
Besides of that there are hundreds of WMI classes you could query. Not sure if the members of OS (aka Win32_OperatingSystem) are the only values you are looking for.
That's where you may start reading:
https://msdn.microsoft.com/en-us/library/bg126473(v=vs.85).aspx
Steffen
Code: Select all
wmic os get /value>info.txt
Besides of that there are hundreds of WMI classes you could query. Not sure if the members of OS (aka Win32_OperatingSystem) are the only values you are looking for.
That's where you may start reading:
https://msdn.microsoft.com/en-us/library/bg126473(v=vs.85).aspx
Steffen
Re: Get all Wmic information quickly
Thanks aGerman this worked for me!