굿

프로세스 강제 종료

· 14년 전 · 1247
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,446
14년 전 조회 1,926
14년 전 조회 2,035
14년 전 조회 1,252
14년 전 조회 2,491
14년 전 조회 2,477
14년 전 조회 2,058
14년 전 조회 1,994
14년 전 조회 1,529
14년 전 조회 2,016
14년 전 조회 1,936
14년 전 조회 1,634
14년 전 조회 1,332
14년 전 조회 3,092
14년 전 조회 2,410
14년 전 조회 1,773
14년 전 조회 2,418
14년 전 조회 1,280
14년 전 조회 1,409
14년 전 조회 2,031
14년 전 조회 2,123
14년 전 조회 1,725
14년 전 조회 1,417
14년 전 조회 1,581
14년 전 조회 1,532
14년 전 조회 2,351
14년 전 조회 2,488
14년 전 조회 2,358
14년 전 조회 1,509
14년 전 조회 2,065
14년 전 조회 2,116
14년 전 조회 2,208
14년 전 조회 3,988
14년 전 조회 1,534
14년 전 조회 2,335
14년 전 조회 1,257
14년 전 조회 1,394
14년 전 조회 1,259
14년 전 조회 1,676
14년 전 조회 2,130
14년 전 조회 1,670
14년 전 조회 1,534
14년 전 조회 1,203
14년 전 조회 2,180
14년 전 조회 1,749
14년 전 조회 1,279
14년 전 조회 2,703
14년 전 조회 1,791
14년 전 조회 1,732
14년 전 조회 1,248
14년 전 조회 2,135
14년 전 조회 3,100
14년 전 조회 1,502
14년 전 조회 952
14년 전 조회 2,484
14년 전 조회 2,246
14년 전 조회 1,190
14년 전 조회 1,763
14년 전 조회 1,940
14년 전 조회 1,796
14년 전 조회 1,139
14년 전 조회 1,131
14년 전 조회 1,430
14년 전 조회 1,757
14년 전 조회 1,605
14년 전 조회 1,298
14년 전 조회 1,712
14년 전 조회 1,543
14년 전 조회 1,848
14년 전 조회 1,300
14년 전 조회 1,542
14년 전 조회 1,320
14년 전 조회 1,679
14년 전 조회 1,154
14년 전 조회 2,560
14년 전 조회 1,762
14년 전 조회 3,343
14년 전 조회 1,733
14년 전 조회 1,493
14년 전 조회 1,557
14년 전 조회 1,541
14년 전 조회 996
14년 전 조회 1,253
14년 전 조회 1,331
14년 전 조회 2,783
15년 전 조회 1,424
15년 전 조회 3,787
15년 전 조회 1,242
15년 전 조회 1,072
15년 전 조회 1,154
15년 전 조회 2,144
15년 전 조회 1,750
15년 전 조회 1,571
15년 전 조회 1,623
15년 전 조회 1,548
15년 전 조회 1,650
15년 전 조회 1,310
15년 전 조회 916
15년 전 조회 1,417
15년 전 조회 2,582