I try to start the sro_client complete hidden and i wanna show it after i received some packets.
but every time i start it i always see the splash screen.
I Tried the follow code but without any success.
Process = new Process();
Process.StartInfo.FileName = file;
Process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
Process.Start();
When i use RedirectStandardInput it will not show anything but my proxy is not getting any packets or anything
Is there a method to hide it from the start? or is it impossible to do this?






