Get ChildItem - yokohama/oreshic-record GitHub Wiki
{none}
Get-ChildItem C:\ -recurse -force -erroraction silentlycontinue -file | where-object { $_.name -match "procmon" } | select fullnameFullName
--------
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{none}
{none}
Get-ChildItem C:\ -recurse -force -erroraction silentlycontinue -directory | where-object { $_.name -match "sysinternal" } | select fullnameFullName
--------
C:\Users\hoge\AppData\Local\Programs\SysinternalsSuite{none}