Ansible/bibliotheque/yml/Windows-Run-powershell.yml
2024-04-01 10:40:20 +02:00

10 lines
165 B
YAML

---
- name: Execution script
hosts: windows
gather_facts: no
become: false
tasks:
- name: Run powershell script
script: files/helloworld.ps1
...