version 3.6

This commit is contained in:
2025-09-09 09:47:31 +02:00
parent c61f39f5fb
commit 6085075e26

View File

@@ -1,19 +1,11 @@
- name: Patch Domain Controllers via JEA
hosts: domain_controllers
gather_facts: no
tasks:
- name: Get available updates
win_shell: |
Invoke-Command -ConfigurationName DCMaintenance -ScriptBlock { Get-WindowsUpdate }
- name: Install updates
win_shell: |
Invoke-Command -ConfigurationName DCMaintenance -ScriptBlock { Install-WindowsUpdate -AcceptAll -AutoReboot }
- name: Get available updates
win_powershell: Get-WindowsUpdate
- name: Install updates
win_powershell: Install-WindowsUpdate -AcceptAll -AutoReboot
- name: Get update history
win_shell: |
Invoke-Command -ConfigurationName DCMaintenance -ScriptBlock { Get-WUHistory }
- name: Get update history
win_powershell: Get-WUHistory
- name: Restart domain controller
win_powershell: Restart-Computer -Force
- name: Restart domain controller
win_shell: |
Invoke-Command -ConfigurationName DCMaintenance -ScriptBlock { Restart-Computer -Force }