굿

프로세스 강제 종료

· 14년 전 · 1213
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,403
14년 전 조회 1,891
14년 전 조회 1,999
14년 전 조회 1,204
14년 전 조회 2,450
14년 전 조회 2,427
14년 전 조회 2,006
14년 전 조회 1,950
14년 전 조회 1,477
14년 전 조회 1,968
14년 전 조회 1,885
14년 전 조회 1,589
14년 전 조회 1,294
14년 전 조회 3,048
14년 전 조회 2,368
14년 전 조회 1,728
14년 전 조회 2,381
14년 전 조회 1,247
14년 전 조회 1,360
14년 전 조회 1,999
14년 전 조회 2,076
14년 전 조회 1,682
14년 전 조회 1,375
14년 전 조회 1,537
14년 전 조회 1,487
14년 전 조회 2,314
14년 전 조회 2,445
14년 전 조회 2,323
14년 전 조회 1,481
14년 전 조회 2,031
14년 전 조회 2,071
14년 전 조회 2,165
14년 전 조회 3,946
14년 전 조회 1,495
14년 전 조회 2,299
14년 전 조회 1,213
14년 전 조회 1,352
14년 전 조회 1,204
14년 전 조회 1,643
14년 전 조회 2,090
14년 전 조회 1,633
14년 전 조회 1,484
14년 전 조회 1,170
14년 전 조회 2,131
14년 전 조회 1,695
14년 전 조회 1,238
14년 전 조회 2,659
14년 전 조회 1,753
14년 전 조회 1,696
14년 전 조회 1,214
14년 전 조회 2,090
14년 전 조회 3,060
14년 전 조회 1,479
14년 전 조회 928
14년 전 조회 2,459
14년 전 조회 2,211
14년 전 조회 1,169
14년 전 조회 1,734
14년 전 조회 1,918
14년 전 조회 1,777
14년 전 조회 1,117
14년 전 조회 1,107
14년 전 조회 1,408
14년 전 조회 1,732
14년 전 조회 1,589
14년 전 조회 1,276
14년 전 조회 1,695
14년 전 조회 1,524
14년 전 조회 1,820
14년 전 조회 1,284
14년 전 조회 1,518
14년 전 조회 1,297
14년 전 조회 1,658
14년 전 조회 1,127
14년 전 조회 2,536
14년 전 조회 1,740
14년 전 조회 3,320
14년 전 조회 1,707
14년 전 조회 1,472
14년 전 조회 1,542
14년 전 조회 1,520
14년 전 조회 976
14년 전 조회 1,233
14년 전 조회 1,302
14년 전 조회 2,766
14년 전 조회 1,404
14년 전 조회 3,763
14년 전 조회 1,221
14년 전 조회 1,052
14년 전 조회 1,134
14년 전 조회 2,118
14년 전 조회 1,729
14년 전 조회 1,542
14년 전 조회 1,594
14년 전 조회 1,517
14년 전 조회 1,626
14년 전 조회 1,281
14년 전 조회 891
14년 전 조회 1,394
14년 전 조회 2,562