diff --git a/ps-commands.md b/ps-commands.md index 6336883..795cc94 100644 --- a/ps-commands.md +++ b/ps-commands.md @@ -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 ```