Windows PowerShell でファイルやコマンドの出力結果から文字列を検索する方法について説明します。
ファイルの中から特定の文字列を検索
Get-Content C:\Windows\setupact.log | Select-String "dispci.dll"
Windows コマンドの実行結果から特定の文字列を含むテキスト行を検索
ipconfig | Select-String ipv4
C# プログラマーのフリーランスでの活動を書いています。
Windows PowerShell でファイルやコマンドの出力結果から文字列を検索する方法について説明します。
Get-Content C:\Windows\setupact.log | Select-String "dispci.dll"
ipconfig | Select-String ipv4