Files
Ansible/yml/Windows-Run-powershell.yml
2023-07-03 20:39:45 +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
...