화면에 표시되는 실행 중인 응용 프로그램은 Windows 에서 발생하는 작업의 일부입니다 . 장치 드라이버 관리에서 보안 보장에 이르기까지 많은 백그라운드 프로세스가 작동하는 Windows PC를 유지 관리합니다.
여러 대의 컴퓨터를 감독하는 모든 시스템 관리자의 경우 이러한 중요한 서비스의 상태를 볼 수 있는 것이 중요합니다. 작업 관리자(Task Manager) 접근 방식은 이에 대해 너무 느리고 스크립트로 자동화할 수 없습니다.
해결책? 명령줄 도구. 명령 프롬프트 또는 PowerShell(Command Prompt or PowerShell) 을 사용하여 시스템에서 실행되는 운영 Microsoft 서비스 에 대한 정보를 빠르게 얻을 수 있으므로 문제를 신속하게 진단하는 데 도움이 됩니다.
명령 프롬프트(Command Prompt) 에 Windows 서비스(Services) 나열
Windows PowerShell 만큼 유연하거나 강력하지는 않지만 명령 프롬프트(the Command Prompt) 는 여전히 시스템 관리자를 위한 훌륭한 도구입니다. queryex 명령을 사용하여 활성 및 비활성화된 서비스의 상태를 모두 가져온 다음 taskkill 명령을 사용하여(use the taskkill command) 성가신 프로세스를 종료할 수 있습니다.
- queryex 명령을 사용하려면 명령 프롬프트(Command Prompt) 를 관리자(Administrator) 로 실행하십시오 . 시작 메뉴에서 cmd를 검색하여 앱을 찾을 수 있습니다.
- sc queryex 명령을 사용하는 방법에는 여러 가지가 있습니다. 유형 및 상태(State) 는 가장 일반적으로 사용되는 두 가지 매개변수입니다. 예를 들어, 모든 Windows(Windows) 프로세스 를 보려면 다음 명령을 입력하십시오 .
sc queryex type=service state=all
- 기본 보기는 다소 압도적일 수 있습니다. 목록을 더 쉽게 구문 분석할 수 있도록 프로세스 이름만 표시할 수 있습니다.
sc queryex type=service state=all | find /i “SERVICE_NAME:”
- 기본적으로 이 명령은 모든 활성 프로세스를 나열합니다. 비활성 항목을 찾으려면 state 매개변수를 수정하십시오.
sc queryex type=service state=inactive
- 이름으로 특정 프로세스의 상태를 쿼리할 수도 있습니다. 이것은 일괄 파일을 설정하여 많은 프로세스를 한 번에 확인할 수 있기 때문에 시스템 관리자에게 매우 유용합니다. 다음은 예입니다.
sc 쿼리 장치 설치(sc query DeviceInstall)
PowerShell 에서 Windows 서비스(Services) 나열
PowerShell 은 최신 Windows 용 전용 명령줄 셸입니다 . 따라서 명령을 통해 거의 모든 운영 체제 구성 요소에 대한 액세스를 제공하며 Windows 서비스도 예외는 아닙니다.
PowerShell 의 장점은 쉽게 자동화할 수 있다는 것입니다. 모든 PowerShell 명령은 복잡한 스크립트로 컴파일할 수 있으므로 번거로움 없이 여러 PC에서 시스템 관리 작업을 설정할 수 있습니다.
- (Start)PowerShell 을 열어 시작 합니다 . 시작 메뉴(Start Menu) 에서 검색할 수 있습니다 . 상승된 인스턴스를 실행해야 합니다(즉, 관리자(Administrator) 로 ).
- PowerShell 에서 (PowerShell)Windows 서비스 를 나열하는 가장 간단한 명령 은 Get-Service 입니다. 상태 및 이름과 함께 컴퓨터의 모든 서비스를 표시합니다. 유일한 문제는 서비스 목록이 꽤 길 수 있다는 것입니다.
- Get-Service 를 사용할 때 목록을 텍스트 파일로 내보내는 것이 좋습니다. 다음과 같이 파이프를 사용하여 이 작업을 수행할 수 있습니다.
Get-Service | Out-File “C:\logs\All_Services.txt”
- 특정 서비스의 상태를 조회하려면 서비스 이름과 함께 Get-Service 명령을 따르십시오. 이름을 쉼표로 구분하여 여러 프로세스의 상태를 요청할 수 있습니다.
Get-Service CryptSvc, COMSysApp
- 파이프를 사용하여 Get-Service cmdlet을 Where-Object 함수와 결합하고 Status 를 기준으로 결과를 필터링할 수도 있습니다 . 다음 명령은 실행(Running) 중인 모든 서비스를 가져와 이를 보여줍니다.
Get-Service | Where-Object {$_.Status -EQ “Running”}
서비스 종속성 확인
모든 복잡한 프로세스는 여러 개의 상호 의존적인 서비스로 분할됩니다. 그렇기 때문에 단순히 특정 서비스의 상태를 얻는 것만으로는 충분하지 않은 경우가 많습니다. 서비스가 의존하는 서비스의 상태도 확인해야 합니다.
- 특정 서비스에 필요한 서비스를 보려면 Get-Service cmdlet 과 함께 -RequiredServices 플래그를 사용합니다. 다음은 예입니다.
Get-Service -이름 CryptSvc -RequiredServices(Get-Service -Name CryptSvc –RequiredServices)
- 마찬가지로 특정 서비스에 의존하는 서비스 목록을 얻으려면 -DependentServices 플래그를 활용하십시오.
Get-Service -이름 CryptSvc -DependentServices(Get-Service -Name CryptSvc -DependentServices)
이 두 플래그는 영향을 받는 서비스와 연결된 모든 서비스를 추적할 수 있는 방법을 제공하므로 Windows 서비스 를 자동으로 시작하거나 중지하는 스크립트를 작성하는 데 중요 합니다.
원격 컴퓨터 의 (Remote)Windows 서비스(Services) 나열
PowerShell 방법 은 로컬 컴퓨터에 국한되지 않습니다. 위에서 설명한 것과 동일한 구문으로 Get-Service cmdlet을 사용 하여 원격 PC의 프로세스도 쿼리할 수 있습니다. 정보를 검색할 원격 컴퓨터를 지정하려면 끝에 -ComputerName 플래그를 추가하기 만 하면 됩니다.(Just)
다음은 예입니다.
get-service CryptSvc -ComputerName Workstation7
PowerShell 에서 Windows 서비스(Services) 관리
서비스 상태를 가져오는 것은 Windows PowerShell(Windows PowerShell) 에서 할 수 있는 유일한 작업이 아닙니다 . 본격적인 스크립팅 환경으로서 모든 GUI 옵션에 대한 스크립트 대안을 제공합니다.
Powershell cmdlet은 서비스를 중지, 시작, 다시 시작하거나 수정할 수도 있습니다. 자동화된 Get-Service 명령 과 함께 PowerShell 스크립트를 작성하여 일상적인 시스템 관리 작업을 완전히 자동화할 수 있습니다.
- 서비스 상태를 쿼리하는 것 외에도 PowerShell 을 사용하여 서비스를 관리할 수도 있습니다. 서비스 시작 또는 중지는 서비스 이름만 필요로 하는 단일 명령으로 수행할 수 있습니다. 예를 들어 서비스를 중지하는 방법은 다음과 같습니다.
서비스 중지 - 이름 스풀러(Stop-Service -Name Spooler)
- 서비스 시작은 다음과 유사하게 진행됩니다.
서비스 시작 - 이름 스풀러(Start-Service -Name Spooler)
- 서비스가 올바르게 작동하지 않는 경우 다시 시작하도록 선택할 수도 있습니다.
다시 시작 서비스 - 이름 스풀러(Restart-Service -Name Spooler)
- 서비스 속성을 변경하는 데 사용할 수 있는 Set-Service cmdlet도 있습니다. 여기에서 Print Spooler 서비스의 자동 시작을 비활성화합니다.
Set-Service '스풀러' -StartupType 비활성화됨(Set-Service ‘Spooler’ -StartupType Disabled)
Windows (List Windows) 서비스(Services) 를 나열하는 가장 좋은 방법은 무엇입니까 ?
Windows 10 을 실행하든 Windows Server 를 실행하든 모든 Windows 서비스 목록을 볼 수 있으면 편리합니다. 중요한 시스템 기능의 문제를 진단하거나 불필요한 Microsoft 서비스를 중지 하여 성능을 개선할 수 있습니다.
이를 위해 PowerShell 이 최선의 선택입니다. 명령 프롬프트(Command Prompt) 에서 서비스 목록을 얻을 수 있지만 PowerShell 에서 제공하는 추가 기능 이 더 유용합니다.
PowerShell cmdlet을 사용 하여 Windows 프로세스의 서비스 상태를 가져와 상태 또는 기타 매개 변수로 필터링할 수 있습니다. 종속 서비스를 결정하고 필요에 따라 시작하거나 중지하는 것도 쉽습니다.
How to List All Windows Services using PowerShell or Command Line
The running applications you see on your screen are a fraction of what is happening in Windows. From managing device drivers to ensuring seсurity, a bunch of background processes maintain a functioning Windows РC.
For any system administrator overseeing multiple computers, it is important to be able to view the status of these critical services. The Task Manager approach is too slow for this, and you cannot automate it with a script.
The solution? Command-line tools. Using the Command Prompt or PowerShell, you can quickly get a read on the operational Microsoft services running on a system, helping you diagnose any issues swiftly.
Listing Windows Services In the Command Prompt
While not as flexible or powerful as Windows PowerShell, the Command Prompt is still an excellent tool for system administrators. You can use the queryex command to get the status of both active and disabled services and then use the taskkill command to end pesky processes.
- To use the queryex command, run Command Prompt as an Administrator. You can find the app by searching cmd in the start menu.
- There are many ways of using the sc queryex command. Type and State are the two most commonly used parameters. For example, enter the following command to view all Windows processes:
sc queryex type=service state=all
- The default view can be a bit overwhelming. You can display just the names of processes to make the list easier to parse:
sc queryex type=service state=all | find /i “SERVICE_NAME:”
- By default, the command lists all active processes. To look for inactive ones, modify the state parameter:
sc queryex type=service state=inactive
- You can also query the status of a specific process by its name. This is incredibly useful for system administrators, as they can set up batch files to check many processes at once. Here’s an example:
sc query DeviceInstall
Listing Windows Services in PowerShell
PowerShell is meant to be a dedicated command-line shell for modern Windows. As such, it provides access to pretty much every operating system component through commands, and Windows services are no exception.
PowerShell’s advantage is that you can automate it easily. All PowerShell commands can be compiled into complex scripts, allowing you to set up system administration tasks on multiple PCs without hassle.
- Start by opening PowerShell. You can search for it in the Start Menu; just make sure to run an elevated instance (i.e., as an Administrator).
- The simplest command for listing Windows services on PowerShell is Get-Service. It shows all services on your computer, along with their status and names. The only problem is that the list of services can be pretty long.
- When using Get-Service, it is a better idea to export the list to a text file. You can do this using pipes, like this:
Get-Service | Out-File “C:\logs\All_Services.txt”
- To look up the status of a specific service, follow the Get-Service command with the name of the service. You can request the status of multiple processes by separating their names with commas.
Get-Service CryptSvc, COMSysApp
- Pipes can also be used to combine the Get-Service cmdlet with the Where-Object function and filter the results by Status. The following command illustrates this by getting all Running services:
Get-Service | Where-Object {$_.Status -EQ “Running”}
Checking Service Dependencies
Any complex process is split into multiple interdependent services. This is why simply getting the status of a particular service is often not enough. You also need to check the status of the services that service is dependent on.
- To view the services required by a particular service, use the -RequiredServices flag with the Get-Service cmdlet. Here’s an example:
Get-Service -Name CryptSvc –RequiredServices
- Similarly, to get a list of services that depend on a specific service, take advantage of the -DependentServices flag.
Get-Service -Name CryptSvc -DependentServices
These two flags are crucial in writing scripts to automatically start or stop Windows services, as they give you a way to keep track of all the services connected with the affected service.
Listing Windows Services On Remote Computers
The PowerShell method is not limited to local computers. You can use the Get-Service cmdlet with the same syntax described above to query the processes of remote PCs as well. Just append the -ComputerName flag at the end to specify which remote computer to retrieve information from.
Here’s an example:
get-service CryptSvc -ComputerName Workstation7
Managing Windows Services in PowerShell
Getting the status of services isn’t the only thing you can do in Windows PowerShell. As a full-fledged scripting environment, it provides script alternatives to all GUI options.
Powershell cmdlets can stop, start, restart, or even modify services. Paired with automated Get-Service commands, PowerShell scripts can be written to fully automate everyday system management tasks.
- In addition to querying the status of services, you can also use PowerShell to manage them. Starting or stopping services can be done with a single command, requiring only the name of the service. For example, this is how you can stop a service:
Stop-Service -Name Spooler
- Starting a service goes similarly:
Start-Service -Name Spooler
- If a service isn’t working correctly, you can also choose to restart it:
Restart-Service -Name Spooler
- There is also the Set-Service cmdlet that can be used to change the properties of a service. Here we disable the automatic startup of the Print Spooler service:
Set-Service ‘Spooler’ -StartupType Disabled
What Is the Best Way to List Windows Services?
Whether you are running Windows 10 or a Windows Server, being able to view a list of all Windows services can be handy. You can diagnose issues with critical system functions or stop unnecessary Microsoft services to improve performance.
For this purpose, PowerShell is the best option. While you can obtain a service list in Command Prompt, the additional functionality provided by PowerShell is more useful.
You can use PowerShell cmdlets to get the service status of Windows processes, filtering them by their status or other parameters. It is also easy to determine dependent services and start or stop them as required.