굿

프로세스 강제 종료

· 14년 전 · 1252
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,449
14년 전 조회 1,931
14년 전 조회 2,042
14년 전 조회 1,257
14년 전 조회 2,496
14년 전 조회 2,482
14년 전 조회 2,066
14년 전 조회 1,998
14년 전 조회 1,535
14년 전 조회 2,021
14년 전 조회 1,943
14년 전 조회 1,641
14년 전 조회 1,336
14년 전 조회 3,096
14년 전 조회 2,418
14년 전 조회 1,774
14년 전 조회 2,424
14년 전 조회 1,285
14년 전 조회 1,413
14년 전 조회 2,039
14년 전 조회 2,128
14년 전 조회 1,731
14년 전 조회 1,421
14년 전 조회 1,591
14년 전 조회 1,537
14년 전 조회 2,353
14년 전 조회 2,495
14년 전 조회 2,362
14년 전 조회 1,511
14년 전 조회 2,070
14년 전 조회 2,118
14년 전 조회 2,211
14년 전 조회 3,994
14년 전 조회 1,540
14년 전 조회 2,340
14년 전 조회 1,262
14년 전 조회 1,399
14년 전 조회 1,261
14년 전 조회 1,682
14년 전 조회 2,135
14년 전 조회 1,676
14년 전 조회 1,537
14년 전 조회 1,209
14년 전 조회 2,187
14년 전 조회 1,751
14년 전 조회 1,285
14년 전 조회 2,710
14년 전 조회 1,799
14년 전 조회 1,741
14년 전 조회 1,253
14년 전 조회 2,138
14년 전 조회 3,106
14년 전 조회 1,504
14년 전 조회 955
14년 전 조회 2,490
14년 전 조회 2,249
14년 전 조회 1,193
14년 전 조회 1,769
14년 전 조회 1,941
14년 전 조회 1,801
14년 전 조회 1,142
14년 전 조회 1,134
14년 전 조회 1,437
14년 전 조회 1,762
14년 전 조회 1,607
14년 전 조회 1,299
14년 전 조회 1,715
14년 전 조회 1,546
14년 전 조회 1,851
14년 전 조회 1,303
14년 전 조회 1,545
14년 전 조회 1,323
14년 전 조회 1,681
14년 전 조회 1,156
14년 전 조회 2,564
14년 전 조회 1,766
14년 전 조회 3,347
14년 전 조회 1,737
14년 전 조회 1,495
14년 전 조회 1,561
14년 전 조회 1,543
14년 전 조회 999
14년 전 조회 1,255
14년 전 조회 1,333
14년 전 조회 2,787
15년 전 조회 1,424
15년 전 조회 3,788
15년 전 조회 1,244
15년 전 조회 1,075
15년 전 조회 1,160
15년 전 조회 2,149
15년 전 조회 1,754
15년 전 조회 1,574
15년 전 조회 1,627
15년 전 조회 1,552
15년 전 조회 1,655
15년 전 조회 1,311
15년 전 조회 918
15년 전 조회 1,423
15년 전 조회 2,586