Get ChildItem - yokohama/oreshic-record GitHub Wiki

ファイル検索(部分一致)

Message

{none}

Command

Get-ChildItem C:\ -recurse -force -erroraction silentlycontinue -file | where-object { $_.name -match "procmon" } | select fullname

Result

FullName
--------
C:\Users\hoge\AppData\Local\Programs\SysinternalsSuite\procmon.chm
C:\Users\hoge\AppData\Local\Programs\SysinternalsSuite\Procmon.exe
C:\Users\hoge\AppData\Local\Programs\SysinternalsSuite\Procmon64.exe
C:\Windows\System32\drivers\PROCMON24.SYS

Tag

{none}

ディレクトリ検索(部分一致)

Message

{none}

Command

Get-ChildItem C:\ -recurse -force -erroraction silentlycontinue -directory | where-object { $_.name -match "sysinternal" } | select fullname

Result

FullName
--------
C:\Users\hoge\AppData\Local\Programs\SysinternalsSuite

Tag

{none}

⚠️ **GitHub.com Fallback** ⚠️