-인자로 전달된 서비스명의 윈도우 서비스를 제거한다.
#include <windows.h> #define BUFSIZE 512 void RemoveService(char* sc_name){ hManager=OpenSCManager(NULL,NULL,SC_MANAGER_ALL_ACCESS); hService=OpenService(hManager,sc_name,SERVICE_ALL_ACCESS); if(hService){ while(QueryServiceStatus(hService,&sStat)){ //서비스 제거 CloseServiceHandle(hService); CloseServiceHandle(hManager); |
'프로그래밍 > C·C++' 카테고리의 다른 글
레지스트리 삭제하기 (0) | 2011.07.04 |
---|---|
레지스트리 값 출력하기 (0) | 2011.07.04 |
파일 탐색하기 (0) | 2011.07.04 |
호스트 IP 주소 얻기 (0) | 2011.07.04 |
파일 다운로드 하기 (0) | 2011.07.04 |