Windows System VB.Net

Imports System
Imports System.Diagnostics
Imports System.ComponentModel
   Class MyProcess 
      Shared Sub Main()
         Dim startInfo As New ProcessStartInfo("IExplore.exe")
         startInfo.WindowStyle = ProcessWindowStyle.Minimized
         Process.Start(startInfo)
         startInfo.Arguments = "www.rntsoft.com"
         Process.Start(startInfo)
      End Sub
   End Class