24-09-20, 05:34 PM
كود :
Dim params As String = "C:\command.bat"
Dim myProcess As New ProcessStartInfo
myProcess.FileName = "cmd.exe"
myProcess.Arguments = params
myProcess.WindowStyle = ProcessWindowStyle.Hidden
Process.Start(myProcess)https://stackoverflow.com/a/7619427/14137871
https://stackoverflow.com/a/1096626/14137871

