Further defined command

This commit is contained in:
capntack 2023-04-10 19:18:33 -05:00
commit 5335dd8748

View file

@ -12,7 +12,7 @@ Get-WmiObject win32_product -ComputerName $ComputerName | Sort-Object | select V
<br>
### Remotely Fetch Installed Programs with $SearchTerm in them from $ComputerName
### Remotely Fetch Installed Programs with $SearchTerm in them from $ComputerName sorted by $Column (Vendor, Name, or version)
```powershell
Get-WmiObject win32_product -ComputerName $ComputerName | Where-Object {$_.$Column -like “*$SearchTerm*”} | Sort-Object | select Vendor, Name, version