user2915025
user2915025

Reputation: 11

How can I detect chrome installation path in registry?

I want to set out path installation by detecting chrome path from registry. Can I do that?

Upvotes: 1

Views: 1075

Answers (1)

idleberg
idleberg

Reputation: 12882

The path is stored in

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\Google Chrome

and you can use ReadRegStr to query it

Upvotes: 4

Related Questions