set*: add Korean translation (#14295)

* set*: add Korean translation

* setx: fix typo
This commit is contained in:
Chooooo
2024-10-20 21:33:37 +09:00
committed by GitHub
parent 8bbb6de2f1
commit a9898dab64
7 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Set-Service
> 서비스를 시작, 중지 및 일시 중단하고 속성을 변경합니다.
> 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다.
> 더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/set-service>.
- 표시 이름 변경:
`Set-Service -Name {{호스트명}} -DisplayName "{{이름}}"`
- 서비스 시작 유형 변경:
`Set-Service -Name {{서비스명}} -StartupType {{Automatic}}`
- 서비스 설명 변경:
`Set-Service -Name {{서비스명}} -Description "{{설명}}"`