scenarios: You want to quickly determine the bootup time for your Exchange Servers via Powershell.
Resolution: Run the following:
#For a Single Server: Get-WmiObject win32_operatingsystem -computername ExSvr1 | select csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoDateTime($_.lastbootuptime)}} #For Multiple Servers: $1 = Get-ExchangeServer ExSvr* $1 | %{Get-WmiObject win32_operatingsystem -computername $_.name | select csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoDateTime($_.lastbootuptime)}}}