Manages local Windows computer name
- Manages local Windows computer name.
- A reboot is required for the computer name to take effect.
Parameter | Choices/Defaults | Comments |
---|---|---|
name
string
/ required
|
The hostname to set for the computer.
|
.. seealso:: :ref:`ansible.windows.win_dns_client_module` The official documentation on the **ansible.windows.win_dns_client** module.
- name: Change the hostname to sample-hostname
ansible.windows.win_hostname:
name: sample-hostname
register: res
- name: Reboot
ansible.windows.win_reboot:
when: res.reboot_required
Common return values are documented here, the following are the fields unique to this module:
- Ripon Banik (@riponbanik)