win_file_version – Get DLL or EXE file build version¶
Parameters¶
Parameter | Choices/Defaults | Comments |
---|---|---|
path
path
/ required
|
File to get version.
Always provide absolute path.
|
See Also¶
See also
- win_file – Creates, touches or removes files or directories
- The official documentation on the win_file module.
Examples¶
- name: Get acm instance version
win_file_version:
path: C:\Windows\System32\cmd.exe
register: exe_file_version
- debug:
msg: '{{ exe_file_version }}'
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Sam Liu (@SamLiu79)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.