ansible.builtin.win_product_facts (v2.9.27) — module

Provides Windows product and license information

| "added in version" 2.5 of ansible.builtin"

Authors: Dag Wieers (@dagwieers)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

Provides Windows product and license information.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get product id and product key
  win_product_facts:

Outputs

ansible_facts:
  contains:
    ansible_os_license_channel:
      description: The Windows license channel.
      returned: always
      sample: Volume:MAK
      type: str
      version_added: '2.8'
      version_added_collection: ansible.builtin
    ansible_os_license_edition:
      description: The Windows license edition.
      returned: always
      sample: Windows(R) ServerStandard edition
      type: str
      version_added: '2.8'
      version_added_collection: ansible.builtin
    ansible_os_license_status:
      description: The Windows license status.
      returned: always
      sample: Licensed
      type: str
      version_added: '2.8'
      version_added_collection: ansible.builtin
    ansible_os_product_id:
      description: The Windows product ID.
      returned: always
      sample: 00326-10000-00000-AA698
      type: str
    ansible_os_product_key:
      description: The Windows product key.
      returned: always
      sample: T49TD-6VFBW-VV7HY-B2PXY-MY47H
      type: str
  description: Dictionary containing all the detailed information about the Windows
    product and license.
  returned: always
  type: complex