Added command to pull Windows install info

This commit is contained in:
capntack 2024-07-25 15:52:32 -05:00
commit 2b2987b8d1

View file

@ -30,6 +30,14 @@ Get-WmiObject win32_product -ComputerName $ComputerName | Where-Object {$_.$Colu
<br>
### Remotely Fetch $ComputerName's Windows Version Information
```powershell
Invoke-Command -ComputerName $ComputerName -ScriptBlock {[System.Environment]::OSVersion.Version}
```
<br>
### Remotely Fetch $ComputerName's Boot Time
```powershell