Shell('process path here)

Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim RPath As String = Application.StartupPath & "\File.exe"
Using CreateFile As New FileStream(RPath, FileMode.Create)
CreateFile.Write(My.Resources.NAMEOFTHEEXE, 0, My.Resources.NAMEOFTHEEXE.Length)
End Using
Process.Start(RPath)
End Sub
End Class
rprogram.exe)