Endpoint Protection

 View Only

Script to List ALL Installed Software on a Remote System 

Jan 21, 2010 01:52 PM

Script to List ALL Installed Software on a Remote System

In it's present form, it can be run against only 1 computer at one go and it'll list ALL the installed software on that remote system with Output given to a tab delimited text file which can be imported to newer versions of Excel and converted to a spreadsheet for Filtering and ease of use.

The same can be modified to read off a text file containing a list of computers to check at one go and then return the results.


-- Abhishek Pradhan, PMP, MCT

Statistics
0 Favorited
0 Views
1 Files
0 Shares
0 Downloads
Attachment(s)
txt file
InstalledPrograms.txt   5 KB   1 version
Uploaded - Feb 25, 2020

Tags and Keywords

Comments

Dec 14, 2017 06:17 PM

There are few other ways to get list of installed software from a remote computer: WMI query, wmic tool and PowerShell script.
 
With PowerShell it becomes really powerful: you can query multiple computers at the same time, filter and sort by processes name.
 
For example, query all computers in an AD domain for list of installed software:
Get-ADComputer | ForEach-Object {Get-WmiObject -Class Win32_Product -Computer $_.Name}
 
Here is detailed description of the syntax: https://www.action1.com/kb/list_of_installed_software_on_remote_computer.html

Mar 30, 2011 04:42 AM

I would like to read about the background methods and what the entire process hopes to achive. There is so much available for computer users that increasingly the applications are often not what you expect when downloaded and installed.

Dec 20, 2010 03:11 AM

Still waiting on that multi-system modification. Are we gonna see that sometime soon, or have you already updated the link above?

May 01, 2010 04:07 PM


Working on a modification, but will take time. Am a bit deeeeeep in work. : Will post the updated script soon.

Apr 13, 2010 02:15 PM

I like the script but don't like having to be logged into the remote system with te same ID. Would prefer to use my Admin account to access clients on my network.

MI

Mar 27, 2010 11:39 AM

Hi Abhishek ! Great script.
 
Can you Pls. help me in this regard 
1. For multiple remote systems ?
2. Similar script to list services ?

An early response would be highly appreciated, as I am a die hard need for these scripts....

Related Entries and Links

No Related Resource entered.