How Can I Get the Current WebEx Version Using PowerShell?

0
2
Asked By CuriousCat42 On

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

Answered By CleverCoder21 On

How about trying this method? `(Get-Item "$env:LOCALAPPDATAProgramsWebexWebex.exe").VersionInfo.ProductVersion`. Just make sure to use the correct path for the binary.

Answered By RegistryHunter99 On

Have you tried checking the registry for the uninstall key? It sometimes gives more insight.

TechieTina -

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.

Answered By ScriptNinja88 On

You could give this a shot, assuming the WebEx executable is named `webex.exe`: `(Get-Process -Name Webex | Get-Item).VersionInfo.ProductVersion`.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.