How to get or list installed softwares on remote computers?
Check installed programs or softwares on remote computers using PowerShell.
PowerShell can do the task easily to get software installed
on remote computer provided the script is run with proper privileges
Here’s the script below on how to list of installed software
on remote PCs.
#=====================================================
$computer_name="."
$get_progs=gwmi -class Win32_product -computername
$computer_name |
where-object {$_.name -match "^Roxio" }
#$$get_progs=gwmi
-class Win32_product | where-object {$_.vendor -match "^Roxio"
}
$get_progs
#=====================================================
Sample output:
IdentifyingNumber : {1F54DAFA-9261-4A62-B59D-6C9F26B48FE4}
Name :
Roxio Creator Tools
Vendor :
Roxio
Version :
3.8.0
Caption :
Roxio Creator Tools
IdentifyingNumber : {08E81ABD-79F7-49C2-881F-FD6CB0975693}
Name :
Roxio Creator Data
Vendor :
Roxio
Version :
3.8.0
Caption :
Roxio Creator Data
IdentifyingNumber : {6675CA7F-E51B-4F6A-99D4-F8F0124C6EAA}
Name :
Roxio Express Labeler 3
Vendor :
Roxio
Version :
3.2.2
Caption :
Roxio Express Labeler 3
IdentifyingNumber : {73A4F29F-31AC-4EBD-AA1B-0CC5F18C8F83}
Name :
Roxio Creator Audio
Vendor :
Roxio
Version :
3.8.0
Caption :
Roxio Creator Audio
Script provides the option to get installed software by
vendor or by name.
If need to list all installed software but of course doing
this will definitely take some time so it would be better to search by vendor
or name.
But to get the list of all installed software omit or delete
the option “| where-object etc..” part.
Cheers.. Hope it helps..
====================
====================
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
https://play.google.com/store/apps/details?id=com.myrosaryapp
Comments
Post a Comment