Link to home
Start Free TrialLog in
Avatar of frankbustos
frankbustosFlag for United States of America

asked on

is there a way to get computer AGE, brand and model from windows?

without rebooting the server?
Avatar of motnahp00
motnahp00
Flag of United States of America image

Try the set command.
ASKER CERTIFIED SOLUTION
Avatar of mwheeler1982
mwheeler1982
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of serialband
run msinfo32.exe

It will give you general system information, but not the age of the system.
Hello
You could use from command prompt the following.
wmic bios get /format:list 

Open in new window

That will give you all the bios info that your server has.
Hope it helps
I like WMIC too.
Instead of running it locally on each server, you can use the /node:<serverName> switch

e.g.
wmic /node:myServer bios get /format:list  

Send the information to a .txt file by adding a pipe command ">filename.txt"
e.g.
wmic /node:myServer bios get /format:list  >myServer.txt
Avatar of frankbustos

ASKER

great thanks!