first commit

This commit is contained in:
root
2024-07-12 12:58:40 +02:00
commit 30fdad3be5
557 changed files with 11142 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
# tasks file for windows_install-laps
- name: download LAPS
ansible.windows.win_get_url:
url: http://awe-mps-006/LAPS.x64.msi
dest: C:\Users\Public\Downloads\LAPS.msi
- name: Install LAPS
win_package:
path: C:\Users\Public\Downloads\LAPS.msi
creates_path: C:\Program Files\LAPS\CSE\
state: present
register: package_output
ignore_errors: yes