Hi I am using this code to kill unwanted process when my computer starts.
Dim processList() As Process
processList = Process.GetProcessesByName("PName")
For Each proc As Process In processList
proc.Kill()
Next
If I want to kill Explorer.exe process then write
Explorer in place of
PName
Thank You