728x90
Public Function KillProcess(app_exe_Name As String) As Integer
Try
Dim Process As Object, i As Integer
For Each Process In GetObject("winmgmts:").ExecQuery("Select * from Win32_Process Where Name = '" & app_exe_Name & "'")
i += 1
Process.Terminate()
Next
Return i
Catch ex As Exception
Return 0
End Try
End Function
728x90
'자료' 카테고리의 다른 글
윈도우10 0x8024002e 오류코드 해결 방법 (정식 업데이트 파일로 진행) (0) | 2020.10.10 |
---|---|
윈도우10 시작메뉴 앱 설정 - 최적화 Tip (0) | 2020.10.10 |
윈도우10 설치 USB 만들기 (홈버전, windows 10 다운로드 도구 이용) (0) | 2020.10.04 |
어도비 포토샵 cs8.0 정품 설치해서 사용하기 (0) | 2020.10.04 |
OSRLoader 를 이용한 커널드라이브 로드 & 언로드 해보기 (0) | 2020.10.02 |