Process.Start(filePath)
Shell($"cmd.exe /C ""{filePath}""", AppWinStyle.Hide) 'Process.Start("cmd.exe", "/C ""{filePath}""")
Process.Start(New ProcessStartInfo(filePath) With {.UseShellExecute = True})
MsgBox(New ProcessStartInfo().UseShellExecute)