This commit is contained in:
Tack-Support 2024-03-04 17:42:20 +00:00
commit 10b4b9cbcb

View file

@ -27,7 +27,7 @@ Get-WmiObject win32_product -ComputerName $ComputerName | Where-Object {$_.$Colu
### Remotely Fetch $ComputerName's Boot Time
```powershell
Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName $ComputerName | slect csname, lastbootuptime
Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName $ComputerName | select csname, lastbootuptime
```
<br>