Question
System information from command line
Here are some additional commands to gather system information.
I have some of this in a script, I need to get it all in there so I can capture a line of data on each machine.
=========
Get the CPU
=========
C:\Users\haigh1>wmic cpu get name
Name
Intel(R) Core(TM) i7-2720QM CPU @ 2.20GHz
FOR /F "tokens=2 delims==" %%A IN ('WMIC cpu GET Name /VALUE ^| FIND /I "Name=") DO SET machinecpu=%%A
This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.
I have some of this in a script, I need to get it all in there so I can capture a line of data on each machine.
=========
Get the CPU
=========
C:\Users\haigh1>wmic cpu get name
Name
Intel(R) Core(TM) i7-2720QM CPU @ 2.20GHz
FOR /F "tokens=2 delims==" %%A IN ('WMIC cpu GET Name /VALUE ^| FIND /I "Name=") DO SET machinecpu=%%A
This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.

