굿

프로세스 강제 종료

· 14년 전 · 1199
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,392
14년 전 조회 1,885
14년 전 조회 1,982
14년 전 조회 1,192
14년 전 조회 2,440
14년 전 조회 2,416
14년 전 조회 1,993
14년 전 조회 1,937
14년 전 조회 1,469
14년 전 조회 1,948
14년 전 조회 1,876
14년 전 조회 1,579
14년 전 조회 1,287
14년 전 조회 3,037
14년 전 조회 2,358
14년 전 조회 1,715
14년 전 조회 2,369
14년 전 조회 1,243
14년 전 조회 1,351
14년 전 조회 1,985
14년 전 조회 2,065
14년 전 조회 1,674
14년 전 조회 1,365
14년 전 조회 1,527
14년 전 조회 1,478
14년 전 조회 2,309
14년 전 조회 2,437
14년 전 조회 2,311
14년 전 조회 1,466
14년 전 조회 2,019
14년 전 조회 2,064
14년 전 조회 2,156
14년 전 조회 3,938
14년 전 조회 1,487
14년 전 조회 2,294
14년 전 조회 1,203
14년 전 조회 1,342
14년 전 조회 1,195
14년 전 조회 1,636
14년 전 조회 2,082
14년 전 조회 1,625
14년 전 조회 1,473
14년 전 조회 1,157
14년 전 조회 2,120
14년 전 조회 1,684
14년 전 조회 1,232
14년 전 조회 2,645
14년 전 조회 1,745
14년 전 조회 1,683
14년 전 조회 1,200
14년 전 조회 2,081
14년 전 조회 3,047
14년 전 조회 1,475
14년 전 조회 914
14년 전 조회 2,454
14년 전 조회 2,205
14년 전 조회 1,163
14년 전 조회 1,731
14년 전 조회 1,909
14년 전 조회 1,772
14년 전 조회 1,113
14년 전 조회 1,102
14년 전 조회 1,402
14년 전 조회 1,728
14년 전 조회 1,586
14년 전 조회 1,271
14년 전 조회 1,687
14년 전 조회 1,521
14년 전 조회 1,815
14년 전 조회 1,276
14년 전 조회 1,513
14년 전 조회 1,293
14년 전 조회 1,656
14년 전 조회 1,124
14년 전 조회 2,532
14년 전 조회 1,730
14년 전 조회 3,314
14년 전 조회 1,703
14년 전 조회 1,470
14년 전 조회 1,534
14년 전 조회 1,511
14년 전 조회 968
14년 전 조회 1,231
14년 전 조회 1,296
14년 전 조회 2,759
14년 전 조회 1,401
14년 전 조회 3,758
14년 전 조회 1,211
14년 전 조회 1,050
14년 전 조회 1,127
14년 전 조회 2,116
14년 전 조회 1,725
14년 전 조회 1,536
14년 전 조회 1,589
14년 전 조회 1,512
14년 전 조회 1,621
14년 전 조회 1,276
14년 전 조회 885
14년 전 조회 1,392
14년 전 조회 2,561