The Computer Oracle

How can I tell when the last time Chrome updated?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Digital Sunset Looping

--

Chapters
00:00 How Can I Tell When The Last Time Chrome Updated?
00:27 Answer 1 Score 19
00:59 Accepted Answer Score 21
01:17 Thank you

--

Full question
https://superuser.com/questions/408570/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#macos #googlechrome

#avk47



ACCEPTED ANSWER

Score 21


In OS X, open a Terminal and enter:

ls -l "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions"

This will print the current version and the previous one (including its installation date):

drwxrwxr-x  11 werner  admin  352 Aug 24 01:13 76.0.3809.132
drwxrwxr-x  11 werner  admin  352 Sep 18 01:03 77.0.3865.90
lrwxrwxr-x   1 werner  admin   12 Sep 18 01:03 Current -> 77.0.3865.90



ANSWER 2

Score 19


If you're using Windows 7 or Vista (maybe XP, but don't have it handy to test) Chrome actually installs to AppData\Local\Google\Chrome\Application which will contain the previous version and the current version along with sub-directories named after the version number.

The directory names and date information hold the information you asked for.

Update: Chrome often installs under Program Files now so the new location to check would be: C:\Program Files (x86)\Google\Chrome\Application

enter image description here