|
Your download link is at the very bottom of the page... always. |
Processed through Paypal No account required. Donate Bitcoin to this wallet: 1KkUMXvQ2ko3xcJkzitB7WYgoW6m79WFfm Donate Ethereum to this wallet: 0x40E56922F43637224935CDC35e2c96E0392A8505 Donate Litecoin to this wallet: LLYAFEyqjH69gkyCEpRjXNyedRCWrVChfL |
File - Download Get-RemoteProgram v1.4.1 | ||||||||
Description | ||||||||
Always scroll to the bottom of the page for the main download link. We don't believe in fake/misleading download buttons and tricks. The link is always in the same place. Get-RemoteProgram v1.4.1 Get list of installed programs on remote or local computer. This is a script file. Right click and save target or link to download. Left click to open script file. This script generates a list by querying the registry and returning the installed programs of a local or remote computer. It allows for retrieval of additional properties such as the uninstall string of an application as well. Load the function into memory by dot-sourcing the script file this makes the Get-RemoteProgram function available in your current session of PowerShell This command will generate a list of installed programs on local machine. This command will generate a list of installed programs on server01 and server02. This command lill gather the list of programs from Server01 and attempts to retrieve the displayversion and versionmajor subkeys from the registry for each installed program This command will retrieve the installed programs on server01/02 that are passed on to the function through the pipeline and also retrieves the uninstall string for each program Code provided by Georges Zwingelstein, to display the installed programs ordered by Installed programs, installed updates or system components. Will retrieve the installed programs on server01/02 that are passed on to the function through the pipeline and also retrieves the uninstall string for each program. Will only display a single entry of a program of which the first four words are identical. Synopsis: .PARAMETER ComputerName The computer to which connectivity will be checked .PARAMETER Property Additional values to be loaded from the registry. Can contain a string or an array of string that will be attempted to retrieve from the registry for each program entry .PARAMETER IncludeProgram This will include the Programs matching that are specified as argument in this parameter. Wildcards are allowed. Both Include- and ExcludeProgram can be specified, where IncludeProgram will be matched first .PARAMETER ExcludeProgram This will exclude the Programs matching that are specified as argument in this parameter. Wildcards are allowed. Both Include- and ExcludeProgram can be specified, where IncludeProgram will be matched first .PARAMETER ProgramRegExMatch This parameter will change the default behaviour of IncludeProgram and ExcludeProgram from -like operator to -match operator. This allows for more complex matching if required. .PARAMETER LastAccessTime Estimates the last time the program was executed by looking in the installation folder, if it exists, and retrieves the most recent LastAccessTime attribute of any .exe in that folder. This increases execution time of this script as it requires (remotely) querying the file system to retrieve this information. .PARAMETER ExcludeSimilar This will filter out similar programnames, the default value is to filter on the first 3 words in a program name. If a program only consists of less words it is excluded and it will not be filtered. For example if you Visual Studio 2015 installed it will list all the components individually, using -ExcludeSimilar will only display the first entry. .PARAMETER SimilarWord This parameter only works when ExcludeSimilar is specified, it changes the default of first 3 words to any desired value. .EXAMPLE Get-RemoteProgram Description: Will generate a list of installed programs on local machine .EXAMPLE Get-RemoteProgram -ComputerName server01,server02 Description: Will generate a list of installed programs on server01 and server02 .EXAMPLE Get-RemoteProgram -ComputerName Server01 -Property DisplayVersion,VersionMajor Description: Will gather the list of programs from Server01 and attempts to retrieve the displayversion and versionmajor subkeys from the registry for each installed program .EXAMPLE 'server01','server02' | Get-RemoteProgram -Property Uninstallstring Description Will retrieve the installed programs on server01/02 that are passed on to the function through the pipeline and also retrieves the uninstall string for each program .EXAMPLE 'server01','server02' | Get-RemoteProgram -Property Uninstallstring -ExcludeSimilar -SimilarWord 4 Description Will retrieve the installed programs on server01/02 that are passed on to the function through the pipeline and also retrieves the uninstall string for each program. Will only display a single entry of a program of which the first four words are identical. .EXAMPLE Get-RemoteProgram -Property installdate,uninstallstring,installlocation -LastAccessTime | Where-Object {$_.installlocation} Description Will gather the list of programs from Server01 and retrieves the InstallDate,UninstallString and InstallLocation properties. Then filters out all products that do not have a installlocation set and displays the LastAccessTime when it can be resolved. .EXAMPLE Get-RemoteProgram -Property installdate -IncludeProgram *office* Description Will retrieve the InstallDate of all components that match the wildcard pattern of *office* .EXAMPLE Get-RemoteProgram -Property installdate -IncludeProgram 'Microsoft Office Access','Microsoft SQL Server 2014' Description Will retrieve the InstallDate of all components that exactly match Microsoft Office Access & Microsoft SQL Server 2014 .EXAMPLE Get-RemoteProgram -IncludeProgram ^Office -ProgramRegExMatch Description Will retrieve the InstallDate of all components that match the regex pattern of ^Office.*, which means any ProgramName starting with the word Office #> Version 1.4.1 - Minor improvement Added Array support for -IncludeProgram & -ExcludeProgram Click here to visit the author's website. Continue below for the main download link. |
||||||||
Downloads | Views | Developer | Last Update | Version | Size | Type | Rank | |
4,547 | 8,754 | Jaap Brasser <img src="https://www.oldergeeks.com/downloads/gallery/thumbs/GetRemoteProgram6_th.png"border="0"> | Nov 15, 2019 - 21:20 | 1.4.1 | 11.1KB | PS1 | , out of 46 Votes. | |
File Tags | ||||||||
Get-RemoteProgram v1.4.1 |
Click to Rate File     Share it on Twitter → Tweet
|