InstalledDate of app

Could someone that is better at relevance building help me get installed date of Google Chrome?

I used this to find if the application is installed.

exists (it as string) whose(it contains “Google Chrome”) of values “DisplayName” of keys of keys “HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall” of (x64 registries; x32 registries)

But I would like to get the value out of “InstallDate”

On a phone now, so I can’t check the detail, but Install date (or similar) is one of the values of that key.

Whether it updates each time Chrome updates, or shows the original installation date, I don’t know.

Try this

values "InstallDate" of keys whose (value "DisplayName" of it as string as lowercase contains "google chrome") of keys "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall" of (x64 registries ; x32 registries)

3 Likes

Thank you! Just what I needed :slight_smile:

This is really helpful