I'm trying to find out the actual running version of WebEx that appears when you check the "about" section in the app. Since WebEx auto-updates, the version listed in Programs and Features and in the registry reflects the version from the initial installation, which isn't helpful. I've also explored the program folder but couldn't find an executable or file with the version info. Is there a way to retrieve the running version of WebEx using PowerShell?
3 Answers
How about trying this method? `(Get-Item "$env:LOCALAPPDATAProgramsWebexWebex.exe").VersionInfo.ProductVersion`. Just make sure to use the correct path for the binary.
Have you tried checking the registry for the uninstall key? It sometimes gives more insight.
You could give this a shot, assuming the WebEx executable is named `webex.exe`: `(Get-Process -Name Webex | Get-Item).VersionInfo.ProductVersion`.
Yeah, I checked that already, but the registry only shows the initial version installed via WebEx. The product version updates automatically, but the listed version in the registry and Programs and Features doesn't.