Added command to pull Windows install info

main
capntack 2 months ago
parent 8602681ee6
commit 2b2987b8d1

@ -30,6 +30,14 @@ Get-WmiObject win32_product -ComputerName $ComputerName | Where-Object {$_.$Colu
<br> <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 ### Remotely Fetch $ComputerName's Boot Time
```powershell ```powershell

Loading…
Cancel
Save