Files
toallab-automation/roles/oatakan.windows_update/tasks/force_user_registry.yml
2024-02-08 16:20:39 -05:00

10 lines
306 B
YAML

---
- name: disable force unload registry - {{ task_state | default('present') }}
win_regedit:
path: HKLM:\Software\Policies\Microsoft\Windows\System
name: DisableForceUnload
data: 1
type: dword
state: "{{ task_state | default('present') }}"
register: disable_force_unload_registry