community.windows.win_computer_description 模块 – 设置 Windows 描述、所有者和组织

注意

此模块是 community.windows 集合 (版本 2.3.0) 的一部分。

如果您使用的是 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.windows

要在 playbook 中使用它,请指定: community.windows.win_computer_description

概要

  • 此模块设置在“我的电脑”属性下显示的 Windows 描述。模块还设置 Windows 许可证所有者和组织。可以通过运行 winver 命令查看许可证信息。

参数

参数

注释

description

字符串

应用于 Windows 描述的字符串值。指定“”值以清除该值。

organization

字符串

Windows 许可证授予的组织的字符串值。指定“”值以清除该值。

owner

字符串

Windows 许可证授予的用户的字符串值。指定“”值以清除该值。

示例

- name: Set Windows description, owner and organization
  community.windows.win_computer_description:
   description: Best Box
   owner: RusoSova
   organization: MyOrg
  register: result

- name: Set Windows description only
  community.windows.win_computer_description:
   description: This is my Windows machine
  register: result

- name: Set organization and clear owner field
  community.windows.win_computer_description:
   owner: ''
   organization: Black Mesa

- name: Clear organization, description and owner
  community.windows.win_computer_description:
   organization: ""
   owner: ""
   description: ""
  register: result

作者

  • RusoSova (@RusoSova)