Link to home
Start Free TrialLog in
Avatar of NAMEWITHELD12
NAMEWITHELD12Flag for United States of America

asked on

SCCM 2007

how can i run a report or somehow tell when the last time a server was booted?
Avatar of Hendrik Wiese
Hendrik Wiese
Flag of South Africa image

You will only be able to check this if you have SCOM alerts setup. SCCM will not be able to tell you this. Alternatively you would have to look at the Event Logs.
Avatar of X Layer
That's nto true. You can run this query:
select SMS_R_System.NetbiosName, SMS_G_System_OPERATING_SYSTEM.LastBootUpTime from  SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId order by SMS_R_System.NetbiosName

Open in new window

You'll get Netbios computer names and last boot-up date and time.
My apologies - so we all learn something new. Cheers :)
Avatar of NAMEWITHELD12

ASKER

so i can take this and make a report out of it by just creating a new report and then editing the SQL and pasting what you have above?
ASKER CERTIFIED SOLUTION
Avatar of X Layer
X Layer
Flag of Slovenia 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