Powershell スクリプトブロックロギングオン
1. Windows PowerShell スクリプトブロックロギングオン
チャプタープレビュー
00:38 ~ 01:10 → 01_PowerShell ver.5 以上の場合
01:11 ~ 03:47 → 02_PowerShell 下位バージョンの場合(2012R2)
03:48 ~ 04:00 → 03_PowerShell 下位バージョンの場合(その他OS)
2. Powershell Command
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 インストール及び構成ダウンロードリンク
Last updated