Group Policy WMI filter for Office/Outlook version
Group Policy WMI filter for Office/Outlook version
(OP)
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 --> Powershell
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?
RE: Group Policy WMI filter for Office/Outlook version
Office 2013 Administrative Template files (ADMX/ADML) and Office Customization Tool
I hope that helps.
Regards,
Mark
No trees were harmed in posting this message, however a significant number of electrons were terribly inconvenienced.
Check out my scripting solutions at http://www.thespidersparlor.com/vbscript
Work SMARTER not HARDER.
RE: Group Policy WMI filter for Office/Outlook version
How can I use WMI filtering to find what version is installed? Once I've found out I can then install the required application.