Skip to content

Instantly share code, notes, and snippets.

@paveljurca
Last active August 9, 2017 13:19
Show Gist options
  • Save paveljurca/0b634ef3a3c663f1997b42ec2444f2f4 to your computer and use it in GitHub Desktop.
Save paveljurca/0b634ef3a3c663f1997b42ec2444f2f4 to your computer and use it in GitHub Desktop.

MSI GUID

64bit

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

32bit

HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall

PER USER

HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall

REG_SZ "UninstallString"

msiexec /x{3BC0A685-E309-4C51-9D48-9C0632C6DADF} (unistall)

OR

msiexec /i{3BC0A685-E309-4C51-9D48-9C0632C6DADF} (install or configure)

OR

msiexec /i 8d584f.msi

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\F5816105FA50F554AA07B6E6D5D6E407

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\AVerMedia TECHNOLOGIES, Inc.

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\AVerUpdate

Network installations

cached MSI packages %windir%\Installer

in case of network installations leaves only SourceHash{3BC0A685-E309-4C51-9D48-9C0632C6DADF} file

*.MSI package resides right on the AD DISTRIBUTION server, isn't downloaded, isn't cached.

Still you can check up on REG_SZ InstallSource to download it on your own (after you had already installed it). This is handy because if you cant get it through "Programs and Features/Install a program from the network" because of not applied certain GroupPolicy you usually can access and copy the DISTRIB files directly (with just a file manager).

ADDITIONAL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment