I can't run exe file using the process.start() Im using this code to run exe file: Dim startInfo As System.Diagnostics.ProcessStartInfo Dim pStart As New System.Diagnostics.Process startInfo = New System.Diagnostics.ProcessStartInfo("some.exe") startInfo.Arguments = "Some Args"...