굿

프로세스 강제 종료

· 14년 전 · 1286
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,477
14년 전 조회 1,952
14년 전 조회 2,078
14년 전 조회 1,281
14년 전 조회 2,525
14년 전 조회 2,509
14년 전 조회 2,092
14년 전 조회 2,031
14년 전 조회 1,560
14년 전 조회 2,044
14년 전 조회 1,967
14년 전 조회 1,671
14년 전 조회 1,370
14년 전 조회 3,125
14년 전 조회 2,444
14년 전 조회 1,804
14년 전 조회 2,446
14년 전 조회 1,313
14년 전 조회 1,434
14년 전 조회 2,066
14년 전 조회 2,154
14년 전 조회 1,763
14년 전 조회 1,444
14년 전 조회 1,625
14년 전 조회 1,571
14년 전 조회 2,377
14년 전 조회 2,524
14년 전 조회 2,388
14년 전 조회 1,536
14년 전 조회 2,102
14년 전 조회 2,150
14년 전 조회 2,236
14년 전 조회 4,026
14년 전 조회 1,569
14년 전 조회 2,376
14년 전 조회 1,295
14년 전 조회 1,427
14년 전 조회 1,283
14년 전 조회 1,709
14년 전 조회 2,161
14년 전 조회 1,708
14년 전 조회 1,571
14년 전 조회 1,240
14년 전 조회 2,212
14년 전 조회 1,784
14년 전 조회 1,311
14년 전 조회 2,740
14년 전 조회 1,836
14년 전 조회 1,775
14년 전 조회 1,287
14년 전 조회 2,168
14년 전 조회 3,131
14년 전 조회 1,527
14년 전 조회 977
14년 전 조회 2,518
14년 전 조회 2,268
14년 전 조회 1,221
14년 전 조회 1,795
14년 전 조회 1,959
14년 전 조회 1,823
14년 전 조회 1,157
14년 전 조회 1,153
14년 전 조회 1,456
14년 전 조회 1,783
14년 전 조회 1,631
14년 전 조회 1,313
14년 전 조회 1,742
14년 전 조회 1,562
14년 전 조회 1,865
14년 전 조회 1,322
14년 전 조회 1,562
14년 전 조회 1,350
14년 전 조회 1,711
14년 전 조회 1,180
14년 전 조회 2,583
14년 전 조회 1,783
15년 전 조회 3,361
15년 전 조회 1,759
15년 전 조회 1,517
15년 전 조회 1,577
15년 전 조회 1,564
15년 전 조회 1,017
15년 전 조회 1,279
15년 전 조회 1,348
15년 전 조회 2,807
15년 전 조회 1,442
15년 전 조회 3,805
15년 전 조회 1,271
15년 전 조회 1,097
15년 전 조회 1,179
15년 전 조회 2,176
15년 전 조회 1,781
15년 전 조회 1,594
15년 전 조회 1,647
15년 전 조회 1,580
15년 전 조회 1,677
15년 전 조회 1,326
15년 전 조회 941
15년 전 조회 1,447
15년 전 조회 2,613