Forked from indented-automation/Get-InstalledSoftware.ps1
Created
November 23, 2018 15:50
-
-
Save averkios/cca9001a8d18889371853ac7e269ceda to your computer and use it in GitHub Desktop.
Get-InstalledSoftware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#source of the main script : "https://gist.github.com/indented-automation/32efb05a5fb67ef9eed02bbb8fe90691" | |
#source of the Regex filtering : "https://github.com/gangstanthony/PowerShell/blob/master/Get-InstalledApps.ps1" | |
filter Get-InstalledSoftware { | |
<# | |
.SYNOPSIS | |
Get all installed from the Uninstall keys in the registry. | |
.DESCRIPTION | |
Read a list of installed software from each Uninstall key. | |
This function provides an alternative to using Win32_Product. | |
.EXAMPLE | |
Get-InstalledSoftware | |
Get the list of installed applications from the local computer. | |
.EXAMPLE | |
Get-InstalledSoftware -IncludeLoadedUserHives | |
Get the list of installed applications from the local computer, including each loaded user hive. | |
.EXAMPLE | |
Get-InstalledSoftware -ComputerName None -DebugConnection | |
Display all error messages thrown when attempting to audit the specified computer. | |
.EXAMPLE | |
Get-InstalledSoftware -IncludeBlankNames | |
Display all results, including those with very limited information. | |
.EXAMPLE | |
Get-InstalledSoftware -NameRegex 'Office' | |
.EXAMPLE | |
Get-InstalledSoftware -ForceStartRemoteRegistry | |
Display all results that their Display Name matches the regex. | |
#> | |
[CmdletBinding()] | |
[OutputType([PSObject])] | |
param ( | |
# The computer to execute against. By default, Get-InstalledSoftware reads registry keys on the local computer. | |
[Parameter(ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] | |
[String]$ComputerName = $env:COMPUTERNAME, | |
# Attempt to start the remote registry service if it is not already running. This parameter will only take effect if the service is not disabled. | |
[Switch]$StartRemoteRegistry, | |
# Attempt to start the remote registry service, if it is not already running, and disable it after it finishes. if the service is disabled, this parameter will enable it and disabled it after it finishes. | |
[Switch]$ForceStartRemoteRegistry, | |
# Some software packages, such as DropBox install into a users profile rather than into shared areas. Get-InstalledSoftware can increase the search to include each loaded user hive. | |
# | |
# If a registry hive is not loaded it cannot be searched, this is a limitation of this search style. | |
[Switch]$IncludeLoadedUserHives, | |
# By default Get-InstalledSoftware will suppress the display of entries with minimal information. If no DisplayName is set it will be hidden from view. This behaviour may be changed using this parameter. | |
[Switch]$IncludeBlankNames, | |
#Filter the App list using regex | |
[string]$NameRegex = '' | |
) | |
$keys = 'Software\Microsoft\Windows\CurrentVersion\Uninstall', | |
'Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall' | |
# If the remote registry service is stopped before this script runs it will be stopped again afterwards. | |
if ($StartRemoteRegistry) { | |
$shouldStop = $false | |
$service = Get-Service RemoteRegistry -Computer $ComputerName | |
if ($service.Status -eq 'Stopped' -and $service.StartType -ne 'Disabled') { | |
$shouldStop = $true | |
$service | Start-Service | |
} | |
} | |
# If the remote registry service is stopped or disabled before this script runs it will be stopped and disabled again afterwards. | |
if ($ForceStartRemoteRegistry) { | |
$shouldDisable = $false | |
$shouldStop = $false | |
$service = Get-Service RemoteRegistry -Computer $ComputerName | |
$serviceName = $service.Name | |
if ($service.StartType -eq 'Disabled') | |
{ | |
$shouldDisable = $true | |
$shouldStop = $true | |
(gwmi win32_service -computername $ComputerName -filter "name='$serviceName'").ChangeStartMode("Manual") | Out-Null | |
(gwmi win32_service -computername $ComputerName -filter "name='$serviceName'").Startservice() | Out-Null | |
} | |
if ($service.Status -eq 'Stopped' -and $service.StartType -ne 'Disabled') | |
{ | |
$shouldStop = $true | |
$service | Start-Service | |
} | |
} | |
$baseKeys = [System.Collections.Generic.List[Microsoft.Win32.RegistryKey]]::new() | |
$baseKeys.Add([Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $ComputerName, 'Registry64')) | |
if ($IncludeLoadedUserHives) { | |
try { | |
$baseKey = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('Users', $ComputerName, 'Registry64') | |
foreach ($name in $baseKey.GetSubKeyNames()) { | |
if (-not $name.EndsWith('_Classes')) { | |
Write-Debug ('Opening {0}' -f $name) | |
try { | |
$baseKeys.Add($baseKey.OpenSubKey($name, $false)) | |
} catch { | |
$errorRecord = [System.Management.Automation.ErrorRecord]::new( | |
$_.Exception.GetType()::new( | |
('Unable to access sub key {0} ({1})' -f $name, $_.Exception.InnerException.Message.Trim()), | |
$_.Exception | |
), | |
'SubkeyAccessError', | |
'InvalidOperation', | |
$name | |
) | |
Write-Error -ErrorRecord $errorRecord | |
} | |
} | |
} | |
} catch [Exception] { | |
Write-Error -ErrorRecord $_ | |
} | |
} | |
foreach ($baseKey in $baseKeys) { | |
Write-Verbose ('Reading {0}' -f $baseKey.Name) | |
if ($basekey.Name -eq 'HKEY_LOCAL_MACHINE') { | |
$username = 'LocalMachine' | |
} else { | |
# Attempt to resolve a SID | |
try { | |
[System.Security.Principal.SecurityIdentifier]$sid = Split-Path $baseKey.Name -Leaf | |
$username = $sid.Translate([System.Security.Principal.NTAccount]).Value | |
} catch { | |
$username = Split-Path $baseKey.Name -Leaf | |
} | |
} | |
foreach ($key in $keys) { | |
try { | |
$uninstallKey = $baseKey.OpenSubKey($key, $false) | |
if ($uninstallKey) { | |
$is64Bit = $true | |
if ($key -match 'Wow6432Node') { | |
$is64Bit = $false | |
} | |
foreach ($name in $uninstallKey.GetSubKeyNames()) { | |
$packageKey = $uninstallKey.OpenSubKey($name) | |
$installDate = Get-Date | |
$dateString = $packageKey.GetValue('InstallDate') | |
if (-not $dateString -or -not [DateTime]::TryParseExact($dateString, 'yyyyMMdd', (Get-Culture), 'None', [Ref]$installDate)) { | |
$installDate = $null | |
} | |
$AppName = $packageKey.GetValue('Name') | |
if ($AppName -and $AppName -match $NameRegex) { | |
[PSCustomObject]@{ | |
Name = $name | |
DisplayName = $packageKey.GetValue('DisplayName') | |
DisplayVersion = $packageKey.GetValue('DisplayVersion') | |
InstallDate = $installDate | |
InstallLocation = $packageKey.GetValue('InstallLocation') | |
HelpLink = $packageKey.GetValue('HelpLink') | |
Publisher = $packageKey.GetValue('Publisher') | |
UninstallString = $packageKey.GetValue('UninstallString') | |
URLInfoAbout = $packageKey.GetValue('URLInfoAbout') | |
Is64Bit = $is64Bit | |
Hive = $baseKey.Name | |
Path = Join-Path $key $name | |
Username = $username | |
ComputerName = $ComputerName | |
} | |
} | |
} | |
} | |
} catch { | |
Write-Error -ErrorRecord $_ | |
} | |
} | |
} | |
# Stop the remote registry service if required | |
if($StartRemoteRegistry -or $ForceStartRemoteRegistry -and $shouldStop) { | |
$service | Stop-Service | |
} | |
# Disable the remote registry service if required | |
if($StartRemoteRegistry -or $ForceStartRemoteRegistry -and $shouldDisable) { | |
(gwmi win32_service -computername $ComputerName -filter "name='$serviceName'").ChangeStartMode("Disabled") | Out-Null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment