Link to home
Start Free TrialLog in
Avatar of Excalibur Communications
Excalibur CommunicationsFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Script to check installed application across domain

Hi,

I`m trying to find a way to quickly audit around 100 machines on a domain for a specific application that has been deployed through group policy or a better way to audit gp results and see if an msi deployment is successful / where it was installed.

Can anyone point me in the right direction? I have so far seen some scripts that use WMI to query installed software but i`m not sure how i can get this to run across all client machines.

Cheers,
ASKER CERTIFIED SOLUTION
Avatar of Tomislavj
Tomislavj
Flag of Croatia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I highly recommend Spiceworks as well
Avatar of Excalibur Communications

ASKER

Going to try it on a spare host and see what it comes up with... I'll confirm if this provides what i needed.

Cheers,
Set a script as login script to query program and write the log file to a server share.
wmic product where "name like 'Adobe AIR%'" >\\server\share\%computername%-air.txt

Simplistic but gets the job done.