감사합니다.
Powershell - 스케줄러에 파워쉘 스크립트 등록하기 본문
반복적으로 스크립트를 실행해야할 필요가 있을 때 작업 스케줄러를 사용한다.
Powershell 스크립트 등록 방법을 정리한다.
1. 스크립트 저장 및 경로 확인
2. 작업 스케줄러 생성 및 등록
3. 스케줄러 실행 및 점검
[Microsoft/Powershell] - Powershell - Event Log Parsing
1. 이전 글에서 작성한 스크립트를 저장
2. 작업 스케줄러 생성
2.1 Task Scheduler -> 우클릭 -> Create Basic Task
2.2 Task Trigger -> Daily : 나중에 수정이 가능함
2.3 Daily -> 기본값
2.4 Action -> Start a program
2.5 Start a Program ->
Program/script : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Add arguments (optional) : -ExecutionPolicy Unrestricted -File "C:\TaskScheduler-Script\01. Firewall Block IP Address - Logon Event parsing.ps1"
2.6 Summary -> Open the Properties dialog for this task when I click Finish 체크 후 "Finish"
2.7 General
Run whether user is logged on or not : 체크
Run with highest privileges : 체크
Hidden : 체크
Configure for : 운영체제 버전 선택
2.9 Triggers -> Edit ->
Daily
Repeat task every : 5분(변경가능)
for a duration of : Indefinitely(변경가능)
2.9 General -> "OK" -> 계정 패스워드 입력
2.10 생성된 스케줄러 확인
2.11 스케줄러 로그 Enable, 로그 확인
'Microsoft > Powershell' 카테고리의 다른 글
Windows Update 자동화하기 - Part 3 (0) | 2018.09.29 |
---|---|
Windows Update 자동화하기 - Part 2 (1) | 2018.09.29 |
Windows Update 자동화하기 - Part 1 (0) | 2018.09.29 |
Powershell : 도메인 가입하기 (0) | 2018.03.22 |
Powershell : Invoke-Command 정리(Powershell Ver 6) (0) | 2018.01.12 |
Powershell - WSUS Cleanup powershell (0) | 2018.01.02 |
Powershell - 스케줄러에 파워쉘 스크립트 등록하기 - 변수 사용 (0) | 2017.12.07 |
Powershell - Event Log Parsing (0) | 2017.11.30 |