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/set-service.md
Chooooo a9898dab64
set*: add Korean translation (#14295)
* set*: add Korean translation

* setx: fix typo
2024-10-20 21:33:37 +09:00

17 lines
565 B
Markdown

# 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 "{{설명}}"`