Deploy Clients via Group Policy
Overview
This article explains how to deploy Endpoint Protector client software to Windows computers using Active Directory Group Policy Objects (GPO). The Endpoint Protector client is provided as a Microsoft Installer (.msi) file, available in both 32-bit and 64-bit versions. You will create separate GPOs for each installer and use Windows Management Instrumentation (WMI) filters to target the correct operating system architecture. This method allows for automated, large-scale deployment across your organization.
Instructions
Prepare the Endpoint Protector Client Installers
- Obtain both the 32-bit and 64-bit Endpoint Protector client
.msiinstaller files. - Place each installer in a network share that is accessible by all target computers in your Active Directory environment.
Create WMI Filters for OS Architecture
- Open the Group Policy Management console.
- Expand Domains and your domain tree.
- Right-click WMI Filters and select New.
- In the New WMI Filter window, create two filters:
- 32-bit Operating System:
Select * from Win32_Processor where AddressWidth = '32' - 64-bit Operating System:
Select * from Win32_Processor where AddressWidth = '64'
- 32-bit Operating System:
- Optionally, add additional queries to target specific operating systems or computer types. For example:
- Windows 10 Workstation:
SELECT * FROM Win32_OperatingSystem WHERE Version LIKE "10%" AND ProductType="1" - Windows Server 2019:
SELECT * FROM Win32_OperatingSystem WHERE BuildNumber >= 17763 AND (ProductType="3" OR ProductType="2")
- Windows 10 Workstation:
Create Deployment GPOs
- In the Group Policy Management console, right-click Group Policy Objects and select New.
- Name the first GPO (for example, Endpoint Protector 32-bit).
- Right-click the new GPO and select Edit.
- Expand Computer Configuration > Software Settings.
- Right-click Software Installation and select New > Package.
- Browse to the appropriate
.msifile on your network share and select it. - Repeat these steps to create a second GPO for the 64-bit installer (for example, Endpoint Protector 64-bit).
NOTE: The
.msifiles must be located in a shared folder accessible by all target computers.
Link WMI Filters to GPOs
- In the Group Policy Management console, select the Endpoint Protector 32-bit GPO.
- In the WMI Filtering section, select the 32-bit Windows filter you created earlier.
- Repeat this process for the Endpoint Protector 64-bit GPO, selecting the 64-bit Windows filter.
Link GPOs to OUs
- Right-click the target OU and select Link an Existing GPO.
- Select the Endpoint Protector 32-bit GPO and click OK.
- Repeat for the Endpoint Protector 64-bit GPO.
NOTE: The new policies will be applied only after the target computers are rebooted.
For more information, see the Endpoint Protector User Manual.