1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

rdpsign,query,pw*,pushd: add Korean translation (#14443)

This commit is contained in:
Chooooo 2024-10-29 22:37:47 +09:00 committed by GitHub
parent 290ece6544
commit 3cc009c670
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# pushd
> 디렉토리를 스택에 배치하여 나중에 액세스할 수 있습니다.
> `popd`를 참조하여 원래 디렉토리로 전환하세요.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/pushd>.
- 디렉토리로 전환하고 스택에 배치:
`pushd {{경로\대상\디렉토리}}`

13
pages.ko/windows/pwd.md Normal file
View file

@ -0,0 +1,13 @@
# pwd
> PowerShell에서 이 명령은 `Get-Location`의 별칭입니다.
> 그러나 이 명령은 명령 프롬프트(`cmd`)에서 사용할 수 없습니다. 유사한 기능을 위해 `cd`를 사용하세요.
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-location>.
- 동등한 명령 프롬프트 명령에 대한 문서 보기:
`tldr cd`
- 원본 PowerShell 명령에 대한 문서 보기:
`tldr get-location`

View file

@ -0,0 +1,12 @@
# pwlauncher
> Windows To Go 시작 옵션을 관리합니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/pwlauncher>.
- 현재 Windows To Go 상태 표시:
`pwlauncher`
- Windows To Go 시작 옵션 활성화 또는 비활성화:
`pwlauncher /{{enable|disable}}`

28
pages.ko/windows/query.md Normal file
View file

@ -0,0 +1,28 @@
# query
> 프로세스, 세션 및 원격 데스크톱 세션 호스트 서버에 대한 정보를 표시합니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/query>.
- 모든 사용자 세션 표시:
`query session`
- 원격 컴퓨터의 현재 사용자 세션 표시:
`query session /server:{{호스트명}}`
- 로그인한 사용자 표시:
`query user`
- 원격 컴퓨터의 모든 사용자 세션 표시:
`query session /server:{{호스트명}}`
- 모든 실행 중인 프로세스 표시:
`query process`
- 세션 또는 사용자 이름별 실행 중인 프로세스 표시:
`query process {{세션명|사용자명}}`

View file

@ -0,0 +1,24 @@
# rdpsign
> 원격 데스크톱 프로토콜(RDP) 파일을 서명하는 도구입니다.
> 더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/rdpsign>.
- RDP 파일 서명:
`rdpsign {{경로\대상\파일.rdp}}`
- 특정 sha256 해시를 사용하여 RDP 파일 서명:
`rdpsign {{경로\대상\파일.rdp}} /sha265 {{해시}}`
- 최소 출력 설정:
`rdpsign {{경로\대상\파일.rdp}} /q`
- 자세한 경고, 메시지 및 상태 출력:
`rdpsign {{경로\대상\파일.rdp}} /v`
- 파일을 업데이트하지 않고 출력 결과를 `stdout`에 표시하여 서명을 테스트:
`rdpsign {{경로\대상\파일.rdp}} /l`