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 |
Tags
- endpoint security
- x-pack
- Proxy
- bash
- GitLab
- freebsd
- ansible
- Kibana server is not ready yet
- Kibana
- docker
- application security
- PlayBook
- ELASTIC
- macos
- Windows
- elastic stack
- G-suite
- ssh key 배포
- Elasticsearch
- XCP-ng
- pfsense
- proxycfg
- hardening
- xe guest utilities
- 보안양파
- centos 8
- 한글가이드
- 로그인불가
- miniconda
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