윈도우 서비스 목록 확인

Jmnote bot (토론 | 기여)님의 2021년 9월 24일 (금) 23:18 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
윈도우 서비스 목록 확인

1 방법 1: net start[ | ]

C:\WINDOWS\system32>net start
다음과 같은 Windows 서비스가 시작되었습니다.

   AhnLab Safe Transaction Service
   Apache Tomcat 8.5 Tomcat8
   Application Information
... (생략)

2 방법 2: sc[ | ]

서비스명 보기
C:\Users\zetawiki>sc query | findstr SERVICE_NAME
SERVICE_NAME: AdobeARMservice
SERVICE_NAME: AudioEndpointBuilder
SERVICE_NAME: AudioSrv
... (생략)
표시명 보기
C:\Users\zetawiki>sc query | findstr DISPLAY_NAME
DISPLAY_NAME: Adobe Acrobat Update Service
DISPLAY_NAME: Application Experience
DISPLAY_NAME: Windows Audio Endpoint Builder
... (생략)

3 방법 3: wmic[ | ]

서비스가 많고, CMD 창의 가로폭에 제한이 있으므로, 파일로 저장한 후 메모장으로 열어보는 것이 편하다.

wmic service > service.txt
notepad service.txt
wmic service list brief > service_brief.txt
notepad service_brief.txt

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}