Invoking Process without a window.
Invoking a Process without a window and kill the process.
Imports System.Configuration
Dim myProcess As Process
myProcess = New Process
myProcess.EnableRaisingEvents = True
myProcess.StartInfo.FileName = "ExePath along with ExeName"
myProcess.StartInfo.Arguments = "Process Arguments"
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
// To hide the process with out new window we need to use the following statement.
myProcess.StartInfo.CreateNoWindow = True
//To Start the process
myProcess.Start()
To Kill the process
myProcess.Kill()