Added command to pull Windows install info
This commit is contained in:
parent
8602681ee6
commit
2b2987b8d1
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue