1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:22:09 +02:00
tldr/pages.ko/windows/get-command.md
코드싸이 dfdf2fca64
windows/get*: add Korean translation (#14524)
* windows/get*: add Korean translation

* get-wuapiversion: fix typo

* get-wuapiversion: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* pages.ko/windows/getmac: fix typo

Co-authored-by: Chooooo <contact@choo.ooo>

* pages.ko/windows/get-wuapiversion: fix typo

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-03 15:18:35 +09:00

975 B

Get-Command

현재 PowerShell 세션에서 사용 가능한 명령을 나열하고 가져옴. 이 명령은 PowerShell을 통해서만 실행 가능. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/get-command.

  • 현재 컴퓨터에서 사용 가능한 모든 PowerShell 명령(별칭, cmdlet, 함수) 나열:

Get-Command

  • 현재 세션에서 사용 가능한 모든 PowerShell 명령 나열:

Get-Command -ListImported

  • 컴퓨터에서 사용 가능한 PowerShell 별칭/cmdlet/함수만 나열:

Get-Command -Type {{별칭|Cmdlet|함수}}

  • 현재 세션에서 PATH에 있는 프로그램이나 명령만 나열:

Get-Command -Type Application

  • 모듈 이름으로 PowerShell 명령만 나열, 예: 유틸리티 관련 명령은 Microsoft.PowerShell.Utility:

Get-Command -Module {{모듈}}

  • 이름으로 명령 정보(예: 버전 번호나 모듈 이름) 가져오기:

Get-Command {{명령}}