Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

How to find Quick Assist version in Inventory

Recently Microsoft changed the way Quick Assist in Windows 10 updated. It now updates via the Microsoft Store. However, at m place of work the store is blocked. We already have a appx package to manually update the devices but I'd like to be able to run a report to find all the devices that are running the old Quick Assist and the new Quick Assist.

Quick Assist doesn't appear in the standard applications list. Someone mentioned in the PDQ live video when I asked the question that is called SmartAssist but I also can't find this listed anywhere either.

Only thought I had would be to create a file scanner to look at the specific quickassist.exe file for Quick Assist and try extract the version from that ?!?

Anyone think of a better solution ??

Thanks.

2

Comments

1 comment
Date Votes
  • You can create a PowerShell Scanner to look for the old app:

    Get-WindowsCapability -Online | Where-Object Name -like '*QuickAssist*' | Select-Object Name, State
    2