我正在尝试使用 ansible 在来宾 vm 上安装 vmware 工具。我在网上看到的大多数示例都是在 linux 上使用 open-vm-tools 的。这是下面的一个例子。
- name: debian | installing open-vm-tools
apt: name=open-vm-tools state=present
when: ansible_os_family == "Debian" and ansible_virtualization_type == "VMware"
- name: centos | installing open-vm-tools if a vm
yum: name=open-vm-tools state=present
when: ansible_os_family == "Redhat" and ansible_virtualization_type == "VMware"
- name: centos | starting and enabling open-vm-tools
service: name=vmtoolsd.service state=restarted enabled=yes
when: ansible_os_family == "Redhat" and ansible_virtualization_type == "VMware"
是否有一个如何在 Windows 中执行此操作的示例?