굿

프로세스 강제 종료

· 14년 전 · 1372
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>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,564
14년 전 조회 2,048
14년 전 조회 2,173
14년 전 조회 1,375
14년 전 조회 2,621
14년 전 조회 2,615
14년 전 조회 2,179
14년 전 조회 2,142
14년 전 조회 1,654
14년 전 조회 2,143
14년 전 조회 2,039
14년 전 조회 1,783
14년 전 조회 1,462
14년 전 조회 3,221
14년 전 조회 2,532
14년 전 조회 1,896
14년 전 조회 2,536
14년 전 조회 1,409
14년 전 조회 1,531
14년 전 조회 2,156
14년 전 조회 2,233
14년 전 조회 1,855
14년 전 조회 1,536
14년 전 조회 1,711
14년 전 조회 1,655
14년 전 조회 2,477
14년 전 조회 2,611
14년 전 조회 2,491
14년 전 조회 1,620
14년 전 조회 2,197
14년 전 조회 2,229
14년 전 조회 2,318
14년 전 조회 4,120
14년 전 조회 1,650
14년 전 조회 2,476
14년 전 조회 1,385
14년 전 조회 1,518
14년 전 조회 1,376
14년 전 조회 1,811
14년 전 조회 2,247
14년 전 조회 1,793
14년 전 조회 1,640
14년 전 조회 1,319
14년 전 조회 2,296
14년 전 조회 1,882
14년 전 조회 1,400
14년 전 조회 2,813
14년 전 조회 1,914
14년 전 조회 1,843
14년 전 조회 1,373
14년 전 조회 2,251
15년 전 조회 3,212
15년 전 조회 1,604
15년 전 조회 1,068
15년 전 조회 2,599
15년 전 조회 2,333
15년 전 조회 1,283
15년 전 조회 1,857
15년 전 조회 2,025
15년 전 조회 1,865
15년 전 조회 1,240
15년 전 조회 1,226
15년 전 조회 1,534
15년 전 조회 1,844
15년 전 조회 1,701
15년 전 조회 1,382
15년 전 조회 1,806
15년 전 조회 1,640
15년 전 조회 1,921
15년 전 조회 1,386
15년 전 조회 1,629
15년 전 조회 1,424
15년 전 조회 1,767
15년 전 조회 1,250
15년 전 조회 2,647
15년 전 조회 1,849
15년 전 조회 3,431
15년 전 조회 1,825
15년 전 조회 1,585
15년 전 조회 1,644
15년 전 조회 1,633
15년 전 조회 1,093
15년 전 조회 1,360
15년 전 조회 1,413
15년 전 조회 2,867
15년 전 조회 1,497
15년 전 조회 3,865
15년 전 조회 1,340
15년 전 조회 1,171
15년 전 조회 1,248
15년 전 조회 2,233
15년 전 조회 1,841
15년 전 조회 1,656
15년 전 조회 1,702
15년 전 조회 1,626
15년 전 조회 1,737
15년 전 조회 1,392
15년 전 조회 1,003
15년 전 조회 1,505
15년 전 조회 2,667