Install Group Policy Management Tools With Ansible

In this blog post, I will show you how to install GPMC management console with Ansible on Windows server machines.

In my case, I have a Windows member server that I will install the GMPC console on and make it accessible.

Playbook

In the below Playbook, I am installing the GPMC console using the win_feature Ansible module for Windows.

 ---
- name: "Install features"
  hosts: windows
  tasks:
    - name: "Install GPMC"
      win_feature:
         name: GPMC
         state: present

For more Ansible blog posts, please visit the Ansible for Windows page.


Posted

in

by