Results 1 to 5 of 5
  1. #1
    isladogs's Avatar
    isladogs is offline Access MVP / VIP
    Windows 10 Office 365
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,204

    Access/Windows/Office 365 Version Checker

    When clients report issues or forum members ask questions, we often need to ask which version of Access/Windows/Office they are using.
    Unfortunately, MS doesn't provide all the info in an accessible form that can be exported to a text file or similar.

    I have created a utility that gets all the important info and displays it on a form:



    The info can be exported to a text file



    It can then be emailed by clients to me as the developer.
    It could also be useful for forum members to upload this info with their questions.

    The utility is available as a FREE Access add-in in ACCDE format from my website: https://www.isladogs.co.uk/avc-addin/index.html


    Both 32-bit & 64-bit versions are provided. It works in all versions from 2010 onwards
    Full installation instructions for using as an add-in are provided though it can also be used as a standalone app.

    I hope it is useful to others
    Colin Riddington, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I know I don't know, I keep quiet!

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows 10 Office 365
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    Thanks Colin,
    Works fine.


    Access / Windows/ Office Version Info
    =====================================

    Date/Time: 02-Sep-22 7:26:08 AM
    Workstation Name: LAPTOP-DELL2IN1
    Windows Build: 10.0.19044.1889
    Operating System: Windows 10 Home Version 21H2 - Build 10.0.19044.1889 64-bit
    Access Build: 16.0.15427.20210
    Access Full Version: Access 365 Version 2207 - Build 16.0.15427.20210 64-bit
    Access Path: C:\Program Files\Microsoft Office\root\Office16\
    Office 365 Installed: Yes
    Office Install Method: Click-to-Run
    Update Channel: Current Channel
    Update Option: ENABLED: Updates are automatically downloaded and installed

  3. #3
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,550
    Code:
    Public Function getOffVer()
    Dim vRet
    Select Case Int(Application.Version)
       Case 16
         vRet = "2016/2019/off365"
       Case 15
         vRet = "2013"
       Case 14
         vRet = "2010"
       Case 12
          vRet = "2007"
       Case Else
          vRet = "older than 2006"
    End Select
    getOffVer = vRet  & " ver#:"  & Int(Application.Version)
    End Function

  4. #4
    isladogs's Avatar
    isladogs is offline Access MVP / VIP
    Windows 10 Office 365
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,204
    That's fine if all you need is the Office version. BTW you forgot Office 2021.
    However these days with the almost inevitable bugs associated with each month's Office updates, more precise info is required.

    All the info is obtained using VBA including multiple registry calls.
    However, the Office monthly version number e.g. 2207 can only be found online. So an internet connection is needed for that item
    Colin Riddington, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I know I don't know, I keep quiet!

  5. #5
    isladogs's Avatar
    isladogs is offline Access MVP / VIP
    Windows 10 Office 365
    Join Date
    Jan 2014
    Location
    Somerset, UK
    Posts
    6,204
    Following feedback from users, I’ve now added the following:

    1. Copy to Clipboard feature - to make it even easier to paste the info into an email or forum post
    2. VBA References list - any missing references are marked as *BROKEN*


    I’ve also tidied up the code partly to help the form load faster

    The latest version is 2.67.
    For more information and to download the add-in, see my web article: https://www.isladogs.co.uk/avc-addin/

    As before the add-in is FREE and is available as 32-bit/64-bit ACCDE files for use with Access 2010 onwards












    A video is now available on YouTube: https://youtu.be/euad5S-wOig
    Last edited by isladogs; 09-04-2022 at 09:58 AM. Reason: Added video link
    Colin Riddington, Access MVP, Website, email
    The more I learn, the more I know I don't know. When I know I don't know, I keep quiet!

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 2
    Last Post: 08-14-2019, 04:40 PM
  2. Replies: 7
    Last Post: 03-11-2019, 03:06 PM
  3. Access/Windows/Office365 Version Checker
    By isladogs in forum Modules
    Replies: 1
    Last Post: 12-09-2018, 07:04 AM
  4. Replies: 1
    Last Post: 08-12-2016, 02:25 PM
  5. Replies: 6
    Last Post: 02-18-2016, 10:15 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums