未分類

PowerShell - 文字列を検索する

Windows PowerShell でファイルやコマンドの出力結果から文字列を検索する方法について説明します。

ファイルの中から特定の文字列を検索

Get-Content C:\Windows\setupact.log | Select-String "dispci.dll"

Windows コマンドの実行結果から特定の文字列を含むテキスト行を検索

ipconfig | Select-String ipv4

-未分類