Windowsta Çalışan Programları Kapatmak(Process Manager)

Programlama ve Script dilleri konusunda bilgi paylaşım alanıdır.
Cevapla
Kullanıcı avatarı
mayhemious
Kilobyte4
Kilobyte4
Mesajlar: 698
Kayıt: 17 Kas 2007, 13:14
cinsiyet: Erkek

Windowsta Çalışan Programları Kapatmak(Process Manager)

Mesaj gönderen mayhemious »

"Windowsta çalısan programları API ler yardımı ile görüntüleyebilir ve
"görevlerini sonlandırabilirsiniz.Bunun için projeye bir module ekleyin.

"MODULE KODU

"API TANIMLAMALARI
Public Declare Function RegisterServiceProcess Lib "kernel32" (ByVal ProcessID As Long, ByVal ServiceFlags As Long) As Long
Declare Function GetCurrentProcessId Lib "kernel32" () As Long
Declare Function TerminateProcess Lib "kernel32" (ByVal ApphProcess As Long, ByVal uExitCode As Long) As Long
Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal blnheritHandle As Long, ByVal dwAppProcessId As Long) As Long
Declare Function ProcessFirst Lib "kernel32" Alias "Process32First" (ByVal hSnapshot As Long, uProcess As PROCESSENTRY32) As Long
Declare Function ProcessNext Lib "kernel32" Alias "Process32Next" (ByVal hSnapshot As Long, uProcess As PROCESSENTRY32) As Long
Declare Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" (ByVal lFlags As Long, lProcessID As Long) As Long
Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long

Const MAX_PATH& = 260

"PROCESS TIPI
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 * MAX_PATH
End Type

"Forma ise iki tane buton(birisi programı sonlandırma digeri ise yenileme için)
"iki tane de listbox(1 de program isimleri ikincide PID numaraları tutulacak) ekleyin.


Public Function Yenile()
"Bu fonksiyonda apiler yardımı ile çalısan programlar bulunup list1e ekleniyor,
"karsılıklarına ise PID numaraları ekleniyor.Yine api yardımı ile asagıdaki
"KillProcessById altprogramı ile programlar kapatılıyor...


Const PROCESS_ALL_ACCESS = 0
Dim uProcess As PROCESSENTRY32
Dim rProcessFound As Long
Dim hSnapshot As Long
Dim szExename As String
Dim exitCode As Long
Dim myProcess As Long
Dim AppKill As Boolean
Dim appCount As Integer
Dim i As Integer
On Local Error GoTo Bitti


appCount = 0
Const TH32CS_SNAPPROCESS As Long = 2&

uProcess.dwSize = Len(uProcess)
hSnapshot = CreateToolhelpSnapshot(TH32CS_SNAPPROCESS, 0&)
rProcessFound = ProcessFirst(hSnapshot, uProcess)
List1.Clear
List2.Clear
Do While rProcessFound
i = InStr(1, uProcess.szexeFile, Chr(0))
szExename = LCase$(Left$(uProcess.szexeFile, i - 1))
List2.AddItem (uProcess.th32ProcessID)
List1.AddItem (szExename)
If Right$(szExename, Len(myName)) = LCase$(myName) Then
Yenile = True
appCount = appCount + 1
myProcess = OpenProcess(PROCESS_ALL_ACCESS, False, uProcess.th32ProcessID)
AppKill = TerminateProcess(myProcess, exitCode)
Call CloseHandle(myProcess)
End If
rProcessFound = ProcessNext(hSnapshot, uProcess)
Loop
Call CloseHandle(hSnapshot)
Bitti:
End Function


Public Sub KillProcessById(ProcessID As Long)
Dim hp&
hp& = OpenProcess(1&, -1&, ProcessID)
TerminateProcess hp&, 0&
End Sub

Private Sub Command1_Click()
Dim cvb
cvb = MsgBox(List1.List(List1.ListIndex) & vbCrLf & "Programı Kapatmak İstediginizden Emin Misiniz?? ", vbQuestion + vbYesNo, "Confirm")
If cvb = vbYes Then
KillProcessById List2.List(List2.ListIndex)
End If
Yenile
End Sub

Private Sub Command2_Click()
Yenile
End Sub

Private Sub Form_Load()
Yenile
End Sub

Private Sub List1_Click()
List2.ListIndex = List1.ListIndex
End Sub

Private Sub List2_Click()
List1.ListIndex = List2.ListIndex
End Sub

**Anlatım alıntıdır. Kodlar denenmistir
Kullanıcı avatarı
mayhemious
Kilobyte4
Kilobyte4
Mesajlar: 698
Kayıt: 17 Kas 2007, 13:14
cinsiyet: Erkek

Mesaj gönderen mayhemious »

exenin adını yazıp( bi textboxtanda alabiliriz ) bi buton eventine koyabiliriz
Asagıdaki kodlarıda projeye kopyalamanız yeterli olucak.

Kod: Tümünü seç

Option Explicit

Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Any) As Long

Const WM_CLOSE = &H10

Private Sub CloseExe(ByVal sTitle As String)

Dim WinWnd As Long
Dim a

WinWnd = FindWindow(vbNullString, sTitle)

If WinWnd <> 0 Then a = PostMessage(WinWnd, WM_CLOSE, 0&, 0&) Else MsgBox ("boyle bir uygulama yok")




End Sub

Private Sub Command1_Click()
Call CloseExe("uygulamaadi")

End Sub
Kullanıcı avatarı
velociraptor
Yottabyte4
Yottabyte4
Mesajlar: 51239
Kayıt: 14 Mar 2006, 02:33
cinsiyet: Erkek
Teşekkür etti: 12575 kez
Teşekkür edildi: 9553 kez

Re: Windowsta Çalışan Programları Kapatmak(Process Manager)

Mesaj gönderen velociraptor »

Bazen programlarınızın o anda çalışan uygulamalardan bazılarını kapatması gerekebilir. bunun için ne api ile ne modül ile uğraşmayın. tek satır kod ile bu işi halledebilirsiniz..

ad= kapatılacak programın görev yöneticisinde görünen adı

Kod: Tümünü seç

TASKKILL /F /IM ad.exe
hepsi bu kadar
Cevapla