Created
February 3, 2014 19:06
-
-
Save williamjacksn/8790157 to your computer and use it in GitHub Desktop.
Display Flash Player Plugin version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set wi = CreateObject("WindowsInstaller.Installer") | |
For Each p In wi.Products | |
n = wi.ProductInfo(p, "ProductName") | |
If InStr(n, "Adobe Flash Player") > 0 Then | |
If InStr(n, "Plugin") > 0 Then | |
WScript.Echo wi.ProductInfo(p, "VersionString") | |
Exit For | |
End If | |
End If | |
Next |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment