community / community.windows / 2.2.0 / module / win_file_version Get DLL or EXE file build version Authors: Sam Liu (@SamLiu79)community.windows.win_file_version (2.2.0) — module
Install with ansible-galaxy collection install community.windows:==2.2.0
collections: - name: community.windows version: 2.2.0
Get DLL or EXE file build version.
- name: Get acm instance version community.windows.win_file_version: path: C:\Windows\System32\cmd.exe register: exe_file_version
- debug: msg: '{{ exe_file_version }}'
path: description: - File to get version. - Always provide absolute path. required: true type: path
file_build_part: description: build number of the file. returned: no error type: str file_major_part: description: the major part of the version number. returned: no error type: str file_minor_part: description: the minor part of the version number of the file. returned: no error type: str file_private_part: description: file private part number. returned: no error type: str file_version: description: File version number.. returned: no error type: str path: description: file path returned: always type: str product_version: description: The version of the product this file is distributed with. returned: no error type: str