使用Ansible的Windows powershell消息框



我试图使用win_powershell模块在ansible playbook中创建一个任务,但每次运行playbook时,任务都挂起了。有人有解决方案吗?我对ansible很陌生。

这是yml文件:

---
- name: notification
hosts: windows
become: false
gather_facts: false
tasks:
- name: message
ansible.windows.win_powershell:
script: |
Add-Type -AssemblyName PresentationFramework
[System.Windows.MessageBox]::Show('message')


也许以下某个模块可能比运行powershell命令更合适。您需要为其中任何一个安装社区模块。

community.windows.win_msg模块。用法:

- name: Display message.
community.windows.win_msg:
msg: 'message'

Ansible还支持通过community.windows.win_tast模块发送toast通知

相关内容

  • 没有找到相关文章

最新更新