You can use the following PowerShell command to get the last boot time of multiple systems:
Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName Server01,Server02 | Select-Object -Property CSName,LastBootUpTime
Replace Server01,Server02 with the names of the machines you want to retrieve the last boot time from.