13-05-21 06:42 PM
14-05-21 05:42 AM
15-05-21 06:25 PM
16-05-21 04:25 AM
Vivek, it worked for me a while ago, see if it helps you.
Try
' Looping to find the process id by the process name
For Each pProc As System.Diagnostics.Process In _
System.Diagnostics.Process.GetProcessesByName(strProcessName)
pProc.CloseMainWindow
Next pProc
Success = True
Message = ""
Catch e As Exception
Success = False
Message = e.Message
End Try