20
windows/powershell_script.yml
Normal file
20
windows/powershell_script.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
- name: PowerShell Script
|
||||
hosts: "{{ HOSTS | default('windows') }}"
|
||||
gather_facts: false
|
||||
vars:
|
||||
remote_dest: "C:\\sample_script.ps1"
|
||||
tasks:
|
||||
- name: Copy script to remote
|
||||
ansible.windows.win_copy:
|
||||
src: "{{playbook_dir}}/sample_script.ps1"
|
||||
dest: "{{ remote_dest }}"
|
||||
|
||||
- name: Run Script
|
||||
ansible.windows.win_powershell:
|
||||
script: |
|
||||
{{ remote_dest }} -ServiceState {{ service_state }}
|
||||
register: ps_output
|
||||
|
||||
- debug:
|
||||
var: ps_output
|
||||
Reference in New Issue
Block a user