Further defined command

main
capntack 1 year ago
parent 19fbea2e7a
commit 5335dd8748

@ -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

Loading…
Cancel
Save