1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/windows/where-object.md
Chooooo c58b635b8c
where, where-object, wait-process: add Korean translation (#13993)
* where, where-object, wait-process: add Korean translation

* Update pages.ko/windows/wait-process.md

---------

Co-authored-by: HoJeong Im <39ghwjd@naver.com>
2024-10-09 23:39:09 +09:00

694 B

Where-Object

속성 값에 따라 컬렉션에서 개체를 선택합니다. 참고: 이 명령은 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*" }