@start bin32\aion.bin -ip: -port:2106 -cc:1 -noauthgg -noweb -lang:enu
Process.Start("cmd.exe")
SendKeys.Send("@start bin32\aion.bin -ip:IP Here -port:2106 -cc:1 -noauthgg -noweb -lang:enu {Enter} exit {Enter}")
Process.Start("cmd.exe")
SendKeys.Send("@start bin32\aion.bin -ip:IP Here -port:2106 -cc:1 -noauthgg -noweb -lang:enu {Enter} exit {Enter}")
While True
Dim p As Process() = Process.GetProcessesByName("cmd.exe")
If p.Length > 1 Then
Do Until p.Length = 1
p(0).Kill()
Loop
End If
End While

Shell("YOURCODE", vbhide) ' vbHide is to the cmd doesnt show..
Dim psi as new ProcessStartInfo() psi.FileName = "cmd.exe" psi.Arguments = "@start bin32\aion.bin -ip: -port:2106 -cc:1 -noauthgg -noweb -lang:enu" Process.Start(psi)
