10 lines
165 B
YAML
10 lines
165 B
YAML
---
|
|
- name: Execution script
|
|
hosts: windows
|
|
gather_facts: no
|
|
become: false
|
|
|
|
tasks:
|
|
- name: Run powershell script
|
|
script: files/helloworld.ps1
|
|
... |