PowerShell 스크립트 블록 로깅 활성화

1. PowerShell 스크립트 블록 로깅 활성화 방법 (영상)

동영상 챕터 요약

  • 00:38 ~ 01:10 → PowerShell 버전 5 이상인 경우

  • 01:11 ~ 03:47 → PowerShell 하위 버전(Windows Server 2012 R2)인 경우

  • 03:48 ~ 04:00 → 그 외 OS에서 PowerShell 하위 버전인 경우

2. PowerShell 명령어

2-1. Powershell 버전 확인

$PSVersionTable.PSVersion.Major

2-2. Windows OS 버전 확인

Get-WmiObject Win32_OperatingSystem | Select -Property Name

2-3. PowerShell 스크립트 블록 로깅 "사용" 설정 (관리자 권한 필요)

reg add “HKLM\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging” /v “EnableScriptBlockLogging” /t REG_DWORD /d 1 /f

2-4. PowerShell 스크립트 블록 로깅 "사용 안 함" 설정 (관리자 권한 필요)

reg delete “HKLM\SOFTWARE\Policies\Microsoft\Windows\PowerShell” /f

2-5.PowerShell 스크립트 블록 로깅 설정 상태 확인 (관리자 권한 필요)

reg query “HKLM\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging” /v “EnableScriptBlockLogging”

WMF 5.1 설치 및 구성 다운로드 링크

https://docs.microsoft.com/ko-kr/powershell/scripting/windows-powershell/wmf/setup/install-configure?view=powershell-7

Last updated