Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- endpoint security
- 한글가이드
- freebsd
- proxycfg
- elastic stack
- 보안양파
- Kibana
- Windows
- macos
- x-pack
- PlayBook
- centos 8
- 로그인불가
- xe guest utilities
- pfsense
- XCP-ng
- G-suite
- Elasticsearch
- Proxy
- miniconda
- hardening
- ELASTIC
- bash
- ansible
- docker
- Kibana server is not ready yet
- GitLab
- ssh key 배포
- application security
Archives
- Today
- Total
선 밖에 선 자유인
Ansible Playbook : remote exe patch 본문
---
- name: Defender Pattern Update
hosts: windows
gather_facts: no
tasks:
- name: create directory
win_file:
path: C:\Temp
state: directory
- name: file copy
win_copy:
src: /home/ansible/lab/mpam-fe.exe
dest: C:\Temp\mpam-fe.exe
- name: Install Remote patch
raw: 'C:\Temp\mpam-fe.exe'
- name: windows_reboot
win_reboot:
- name: file delete
win_file:
path: C:\Temp\mpam-fe.exe
state: absent
Comments