githubEdit

installed-program

List installed programs

wmic product get name
Get-WmiObject -Class Win32_Product |  select Name, Version

Check windows patch level

#wmic

wmic qfe

#pillage #pillaging It is the process of obtaining information from a compromised system.


Enum installed application

dir "C:\Program Files"
dir "C:\Program Files (x86)"

Enum installed programs via powershell

$INSTALLED = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |  Select-Object DisplayName, DisplayVersion, InstallLocation
$INSTALLED += Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, InstallLocation
$INSTALLED | ?{ $_.DisplayName -ne $null } | sort-object -Property DisplayName -Unique | Format-Table -AutoSize

Discover config file of a software

Decrypt the password

mremoteng_decrypt.pyarrow-up-right, mremoteng_decrypt.pyarrow-up-right

Using for loop:

Last updated