Ansible for Windows hosts(ansible.windows 模块介绍)

Ansible 具有许多专为 Windows 操作系统设计的模块,它使得自动化 Windows 任务变得简单。下面我将介绍一些常用的 Ansible Windows 模块,以及如何配置 Ansible 以管理 Windows 主机。

更详细的用法请参考:Using Ansible and Windows --- Ansible Community Documentation

配置 Ansible 以管理 Windows

在开始使用 Ansible 管理 Windows 主机之前,需要进行一些配置:

  1. 安装必要的 Python 库

    • 确保在你的控制节点上安装 pywinrmrequests-kerberosrequests-ntlm 库,用于远程管理 Windows 主机。
    bash 复制代码
    pip install pywinrm requests-kerberos requests-ntlm
  2. 更新 Ansible 配置文件

    • ansible.cfg 文件中,添加以下内容以配置 Ansible 使用 WinRM 连接到 Windows 主机:
    ini 复制代码
    [defaults]
    inventory = hosts
    remote_user = your_user_name
    
    [inventory]
    enable_plugins = host_list, script, yaml, ini, auto, toml
    
    [winrm]
    transport = ntlm
  3. 配置 Windows 主机

    • 确保 Windows 主机上启用了 WinRM 服务,并且配置正确。这可以通过运行以下 PowerShell 脚本来完成:
    powershell 复制代码
    # Configure LCM for Ansible
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    Set-ExecutionPolicy RemoteSigned -Force
    
    ConfigureRemotingForAnsible.ps1

常用的 Windows 模块

文件和目录管理
  • win_file: 管理文件和目录的存在性、权限等属性。
yaml 复制代码
- name: Ensure a file exists
  ansible.windows.win_file:
    path: C:\path\to\file.txt
    state: touch

- name: Ensure a directory is present
  ansible.windows.win_file:
    path: C:\path\to\directory
    state: directory
软件管理
  • win_package: 安装或卸载软件包。
yaml 复制代码
- name: Install a package
  ansible.windows.win_package:
    name: "Google Chrome"
    path: "C:\\path\\to\\chrome_installer.exe"
    state: present

- name: Uninstall a package
  ansible.windows.win_package:
    name: "Google Chrome"
    state: absent
服务管理
  • win_service: 管理 Windows 服务的状态。
yaml 复制代码
- name: Ensure a service is running
  ansible.windows.win_service:
    name: wuauserv
    state: started

- name: Ensure a service is stopped
  ansible.windows.win_service:
    name: wuauserv
    state: stopped
用户和组管理
  • win_user: 管理 Windows 系统中的用户。
yaml 复制代码
- name: Create a new user
  ansible.windows.win_user:
    name: johndoe
    password: "SecurePassword123!"
    state: present

- name: Delete a user
  ansible.windows.win_user:
    name: johndoe
    state: absent
  • win_group: 管理 Windows 系统中的组。
yaml 复制代码
- name: Create a new group
  ansible.windows.win_group:
    name: Admins
    state: present

- name: Add a user to a group
  ansible.windows.win_group_membership:
    name: johndoe
    groups: Admins
    state: present
注册表管理
  • win_regedit: 管理 Windows 注册表项和值。
yaml 复制代码
- name: Add a registry key
  ansible.windows.win_regedit:
    path: HKLM:\Software\MyCompany
    name: TestKey
    state: present

- name: Remove a registry key
  ansible.windows.win_regedit:
    path: HKLM:\Software\MyCompany
    name: TestKey
    state: absent
系统和环境配置
  • win_environment: 管理 Windows 环境变量。
yaml 复制代码
- name: Set a system environment variable
  ansible.windows.win_environment:
    name: PATH
    value: "C:\path\to\directory"
    state: present
    level: machine

- name: Remove a system environment variable
  ansible.windows.win_environment:
    name: OLD_VAR
    state: absent
    level: machine

示例:简单的 Windows 配置 Playbook

yaml 复制代码
- name: Example playbook for managing Windows hosts
  hosts: windows
  tasks:
    - name: Ensure C:\temp directory exists
      ansible.windows.win_file:
        path: C:\temp
        state: directory

    - name: Install 7-Zip
      ansible.windows.win_package:
        name: 7-Zip
        path: C:\path\to\7zip_installer.exe
        state: present

    - name: Ensure Windows Update service is running
      ansible.windows.win_service:
        name: wuauserv
        start_mode: auto
        state: started

    - name: Set a system environment variable
      ansible.windows.win_environment:
        name: MY_ENV_VAR
        value: "MyValue"
        state: present
        level: machine

通过这些模块和配置方法,你可以使用 Ansible 轻松地管理和自动化 Windows 主机。


Good Good Study, Day Day UP!!

相关推荐
鲸屿19510 分钟前
Ansible之playbook
服务器·网络·ansible
该用户已不存在1 小时前
你没有听说过的7个Windows开发必备工具
前端·windows·后端
枫叶落雨2221 小时前
注解参数校验
windows
通达的K1 小时前
Java实战项目演示代码及流的使用
java·开发语言·windows
胡耀超1 小时前
3.Python高级数据结构与文本处理
服务器·数据结构·人工智能·windows·python·大模型
离越词2 小时前
C++day8作业
开发语言·c++·windows
fasewer3 小时前
玄机--windows日志分析
运维·服务器·windows·网络安全
水饺编程4 小时前
Windows 命令行:cd 命令3,当前目录,父目录,根目录
c语言·c++·windows·visual studio
程序务虚论10 小时前
mac M1上安装windows虚拟机报错
windows·macos·parallels
Sweety丶╮79416 小时前
【Ansible】的介绍
云原生·ansible