

Vb.Net Te Açık Olan Herhangi Bir Exe Nasıl Kapatılır ??
-
vb.net te explorer.exe yi hangi kodla kapatabilirim
-
C# da yazayım vb ile çok farkı yok en azından fikir olur
foreach(Process proc in Process.GetProcesses())
{
if(proc.ProcessName == "explorer.exe")
proc.Kill();
}
yada
Process proc = Process.GetProcessByName("explorer.exe");
proc.Kill()
-
For Each kapat As Process In Process.GetProcesses()
If kapat.ProcessName = "explorer.exe" Then
kapat.Kill()
End If
Next -
Yardımlarınız icin cok tesekkur ederim:D
Sonunda Buldum:D
shell ("taskkill /F /IM Sol*")sol.exe yerine sol* yazılmıştır:D
sol.exe de solitaire nin exesidir
Toplam Hit: 2754 Toplam Mesaj: 4