■ Set-PSBreakpoint 명령에서 -Command/-Action 스위치를 사용해 특정 함수 실행시 특정 조건을 만족하는 경우 중단점을 설정하는 방법을 보여준다.
▶ 실행 명령
1 2 3 |
Set-PSBreakpoint -Command Get-SecurityEvents -Action {if($LogName -ne "Security") {break}} |
■ Set-PSBreakpoint 명령에서 -Command/-Action 스위치를 사용해 특정 함수 실행시 특정 조건을 만족하는 경우 중단점을 설정하는 방법을 보여준다.
▶ 실행 명령
1 2 3 |
Set-PSBreakpoint -Command Get-SecurityEvents -Action {if($LogName -ne "Security") {break}} |