답변:
"관리자"명령 프롬프트에서 다음을 실행하여 sc.exe (Windows Resource Kit에 포함되어 있음)를 사용하여 제거 할 수 있어야합니다.
sc.exe delete <service name>
어디 <service name>
exe가 아닌 서비스 관리 콘솔에 표시되는 서비스 자체의 이름입니다.
시스템 폴더에서 sc.exe를 찾을 수 있으며 실행하려면 관리자 권한이 필요합니다. 이 Microsoft KB 기사의 추가 정보 .
또는 DeleteService () API를 직접 호출 할 수 있습니다 . OpenSCManager () 등을 통해 서비스 제어 관리자에 대한 핸들을 가져와야하기 때문에이 방법은 조금 더 복잡 합니다.
레지스트리를 통해 Windows 서비스 제거
올바른 경로를 알고 있으면 레지스트리에서 서비스를 제거하는 것이 매우 쉽습니다. 내가 한 방법은 다음과 같습니다.
실행 을 Regedit 또는 Regedt32를
레지스트리 항목 "HKEY_LOCAL_MACHINE / SYSTEM / CurrentControlSet / Services"로 이동하십시오.
삭제하려는 서비스를 찾아서 삭제하십시오. 키를보고 서비스가 사용중인 파일을 확인하고 필요한 경우 파일을 삭제할 수도 있습니다.
명령 창을 통해 Windows 서비스 삭제
또는 명령 프롬프트를 사용하고 다음 명령을 사용하여 서비스를 삭제할 수도 있습니다.
sc 삭제
다음 명령을 사용하여 서비스를 만들 수도 있습니다
sc "MorganTechService"binpath = "C : \ Program Files \ MorganTechSPace \ myservice.exe"생성
참고 : 서비스 관리자에서 목록을 업데이트하려면 시스템을 재부팅해야 할 수도 있습니다.
sc delete
합니까?
방금 Windows XP에서 시도했지만 효과가있었습니다.
로컬 컴퓨터 : sc \\. [서비스 이름] 삭제
Deleting services in Windows Server 2003
We can use sc.exe in the Windows Server 2003 to control services, create services and delete services. Since some people thought they must directly modify the registry to delete a service, I would like to share how to use sc.exe to delete a service without directly modifying the registry so that decreased the possibility for system failures.
To delete a service:
Click “start“ - “run“, and then enter “cmd“ to open Microsoft Command Console.
Enter command:
sc servername delete servicename
For instance, sc \\dc delete myservice
(Note: In this example, dc is my Domain Controller Server name, which is not the local machine, myservice is the name of the service I want to delete on the DC server.)
Below is the official help of all sc functions:
DESCRIPTION:
SC is a command line program used for communicating with the
NT Service Controller and services.
USAGE:
sc
이 작업을 가장 좋아하는 방법은 Sysinternals Autoruns 응용 프로그램 을 사용하는 것입니다 . 서비스를 선택하고 삭제를 누르십시오.
sc delete
않습니까?
동일한 서비스의 실행 파일 사본을 작성하여 기존 서비스의 동일한 경로에 붙여 넣은 후 설치 제거하십시오.
나는 이것을 위해 PowerShell을 사용할 것이다.
Remove-Service -Name "TestService"
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/remove-service