How can i open .exe file from the multiple folders in single click using vb.net or any other way? tried using process.start method but it's not working properly and found error can't find path. Example:
For Each Dir As String In Directory.GetDirectories(Application.StartupPath)
Process.Start(Dir & "\" & "*.exe")
Next