disturbedone
Vendor
I've used WMI filters for various things successfully but am struggling with trying to get one to work for finding the version of Office (or more specifically Outlook) so that a GPO only applies if a specific version Office/Outlook is installed.
Google hasn't helped much. About the closest I've come is:
but the GPO doesn't apply and when I run:
in Powershell it just hangs and doesn't give any result.
Any ideas how to get a WMI filter to do this?
Google hasn't helped much. About the closest I've come is:
Code:
SELECT * FROM Win32_Product WHERE (Caption LIKE "Microsoft Office %2013%")
but the GPO doesn't apply and when I run:
Code:
gwmi -query 'SELECT * FROM Win32_Product WHERE (Caption LIKE "Microsoft Office %2013%")'
in Powershell it just hangs and doesn't give any result.
Any ideas how to get a WMI filter to do this?