굿

프로세스 강제 종료

· 14년 전 · 1182
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,372
14년 전 조회 1,872
14년 전 조회 1,965
14년 전 조회 1,179
14년 전 조회 2,422
14년 전 조회 2,397
14년 전 조회 1,981
14년 전 조회 1,926
14년 전 조회 1,451
14년 전 조회 1,934
14년 전 조회 1,855
14년 전 조회 1,562
14년 전 조회 1,267
14년 전 조회 3,020
14년 전 조회 2,337
14년 전 조회 1,696
14년 전 조회 2,353
14년 전 조회 1,226
14년 전 조회 1,335
14년 전 조회 1,972
14년 전 조회 2,047
14년 전 조회 1,660
14년 전 조회 1,348
14년 전 조회 1,515
14년 전 조회 1,458
14년 전 조회 2,292
14년 전 조회 2,421
14년 전 조회 2,294
14년 전 조회 1,452
14년 전 조회 2,005
14년 전 조회 2,053
14년 전 조회 2,145
14년 전 조회 3,923
14년 전 조회 1,473
14년 전 조회 2,276
14년 전 조회 1,188
14년 전 조회 1,314
14년 전 조회 1,179
14년 전 조회 1,616
14년 전 조회 2,066
14년 전 조회 1,613
14년 전 조회 1,461
14년 전 조회 1,146
14년 전 조회 2,104
14년 전 조회 1,672
14년 전 조회 1,216
14년 전 조회 2,628
14년 전 조회 1,730
14년 전 조회 1,666
14년 전 조회 1,183
14년 전 조회 2,065
14년 전 조회 3,034
14년 전 조회 1,455
14년 전 조회 902
14년 전 조회 2,441
14년 전 조회 2,192
14년 전 조회 1,153
14년 전 조회 1,715
14년 전 조회 1,897
14년 전 조회 1,760
14년 전 조회 1,099
14년 전 조회 1,084
14년 전 조회 1,392
14년 전 조회 1,714
14년 전 조회 1,573
14년 전 조회 1,260
14년 전 조회 1,675
14년 전 조회 1,510
14년 전 조회 1,806
14년 전 조회 1,262
14년 전 조회 1,497
14년 전 조회 1,284
14년 전 조회 1,646
14년 전 조회 1,114
14년 전 조회 2,524
14년 전 조회 1,718
14년 전 조회 3,299
14년 전 조회 1,692
14년 전 조회 1,458
14년 전 조회 1,520
14년 전 조회 1,501
14년 전 조회 954
14년 전 조회 1,218
14년 전 조회 1,283
14년 전 조회 2,746
14년 전 조회 1,389
14년 전 조회 3,746
14년 전 조회 1,202
14년 전 조회 1,032
14년 전 조회 1,116
14년 전 조회 2,108
14년 전 조회 1,714
14년 전 조회 1,518
14년 전 조회 1,579
14년 전 조회 1,507
14년 전 조회 1,608
14년 전 조회 1,265
14년 전 조회 869
14년 전 조회 1,386
14년 전 조회 2,545