속성 값에 따라 컬렉션에서 개체를 선택합니다. 참고: 이 명령은 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/where-object.
Get-Alias | Where-Object -{{속성}} {{이름}} -{{eq}} {{이름}}
$_
자동 변수는 Where-Object
cmdlet에 전달되는 각 개체를 나타냄:Get-Service | Where-Object {$_.Status -eq "Stopped"}
Get-Module -ListAvailable | Where-Object { $_.Name -NotLike "Microsoft*" -And $_.Name -NotLike "PS*" }