Can be achieved through the Process class and the ProcessStartInfo class ...
Such as:
Dim MyProcess As New Process
MyProcess.Startinfo.FileName = "Notepad.exe"
MyProcess.startinfo.windowStyle = processWindowStyle.maximized
MyProcess.Start ()
or
System.Diagnostics.Process.start ("cmd.exe", "/ c notepad")