굿

프로세스 강제 종료

· 14년 전 · 1227
Option Explicit

Private Declare Function CreateToolhelp32Snapshot Lib "kernel32" (ByVal lFlags As Long, ByVal lProcessID As Long) As Long
Private Declare Function Process32First Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As Long
Private Declare Function Process32Next Lib "kernel32" (ByVal hSnapShot As Long, uProcess As PROCESSENTRY32) As Long
Private Declare Sub CloseHandle Lib "kernel32" (ByVal hPass As Long)
Private Const TH32CS_SNAPPROCESS As Long = &H2
Private Type PROCESSENTRY32
dwSize As Long
cntUsage As Long
th32ProcessID As Long
th32DefaultHeapID As Long
th32ModuleID As Long
cntThreads As Long
th32ParentProcessID As Long
pcPriClassBase As Long
dwFlags As Long
szExeFile As String * 260
End Type
Private Declare Function OpenProcess Lib "kernel32.dll" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Private Const PROCESS_TERMINATE As Long = (&H1)
Private Declare Function TerminateProcess Lib "kernel32.dll" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)

Public Function GetPidByImage(ByVal image As String) As Long
On Local Error GoTo ErrOut:
Dim hSnapShot As Long
Dim uProcess As PROCESSENTRY32
Dim r As Long, l As Long

hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0&)
If hSnapShot = 0 Then Exit Function
uProcess.dwSize = Len(uProcess)
r = Process32First(hSnapShot, uProcess)
l = Len(image)
If l = 0 Then Exit Function
Do While r
If LCase(Left(uProcess.szExeFile, l)) = LCase(image) Then
GetPidByImage = uProcess.th32ProcessID
Exit Do
End If
r = Process32Next(hSnapShot, uProcess)
Loop
Call CloseHandle(hSnapShot)
ErrOut:
End Function

Public Sub KillPID(ByVal pid As Long)
On Local Error Resume Next
Dim h As Long
If pid = 0 Then Exit Sub
h = OpenProcess(PROCESS_TERMINATE, False, pid)
TerminateProcess h, 0
CloseHandle h
Sleep 1000
ErrOut:
End Sub<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:46:12 기타에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,415
14년 전 조회 1,902
14년 전 조회 2,011
14년 전 조회 1,213
14년 전 조회 2,463
14년 전 조회 2,449
14년 전 조회 2,020
14년 전 조회 1,957
14년 전 조회 1,496
14년 전 조회 1,980
14년 전 조회 1,902
14년 전 조회 1,603
14년 전 조회 1,306
14년 전 조회 3,064
14년 전 조회 2,382
14년 전 조회 1,741
14년 전 조회 2,395
14년 전 조회 1,255
14년 전 조회 1,377
14년 전 조회 2,013
14년 전 조회 2,087
14년 전 조회 1,696
14년 전 조회 1,388
14년 전 조회 1,552
14년 전 조회 1,497
14년 전 조회 2,324
14년 전 조회 2,453
14년 전 조회 2,329
14년 전 조회 1,489
14년 전 조회 2,043
14년 전 조회 2,089
14년 전 조회 2,176
14년 전 조회 3,953
14년 전 조회 1,514
14년 전 조회 2,313
14년 전 조회 1,226
14년 전 조회 1,361
14년 전 조회 1,222
14년 전 조회 1,653
14년 전 조회 2,106
14년 전 조회 1,651
14년 전 조회 1,501
14년 전 조회 1,183
14년 전 조회 2,146
14년 전 조회 1,708
14년 전 조회 1,253
14년 전 조회 2,670
14년 전 조회 1,766
14년 전 조회 1,705
14년 전 조회 1,228
14년 전 조회 2,109
14년 전 조회 3,072
14년 전 조회 1,481
14년 전 조회 934
14년 전 조회 2,465
14년 전 조회 2,223
14년 전 조회 1,171
14년 전 조회 1,739
14년 전 조회 1,924
14년 전 조회 1,783
14년 전 조회 1,121
14년 전 조회 1,111
14년 전 조회 1,413
14년 전 조회 1,737
14년 전 조회 1,593
14년 전 조회 1,282
14년 전 조회 1,699
14년 전 조회 1,526
14년 전 조회 1,827
14년 전 조회 1,291
14년 전 조회 1,529
14년 전 조회 1,302
14년 전 조회 1,663
14년 전 조회 1,134
14년 전 조회 2,542
14년 전 조회 1,742
14년 전 조회 3,324
14년 전 조회 1,716
14년 전 조회 1,479
14년 전 조회 1,546
14년 전 조회 1,528
14년 전 조회 983
14년 전 조회 1,235
14년 전 조회 1,309
14년 전 조회 2,771
14년 전 조회 1,410
14년 전 조회 3,772
14년 전 조회 1,225
14년 전 조회 1,056
14년 전 조회 1,140
14년 전 조회 2,124
15년 전 조회 1,738
15년 전 조회 1,548
15년 전 조회 1,603
15년 전 조회 1,526
15년 전 조회 1,630
15년 전 조회 1,285
15년 전 조회 902
15년 전 조회 1,405
15년 전 조회 2,566