run a command line from vb.net app

Code Example - run a command line from vb.net app

                
                        Sub systemcmd(ByVal cmd As String)
    Shell("cmd /c """ & cmd & """", AppWinStyle.MinimizedFocus, True)
End Sub