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

11 lines
296 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: Arret des serveurs
hosts: windows
gather_facts: no
become: false
tasks:
- name: Turn off computers
# raw: Stop-Computer computer {{ ansible_hostname }} Credential ictadmin
raw: shutdown /s /hybrid /t 15 /c "We are turning computers off after maintenance"
...