Start sro_client.exe Full hidden

04/15/2013 12:01 cyberninjah#1
Hey,

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?
04/15/2013 12:54 qkuh#2
I guess you cannot hide the splash screen because it is no real window.
04/15/2013 16:56 lesderid#3
[Only registered and activated users can see links. Click Here To Register...]
05/17/2013 16:45 falsex#4
i can hide after it apear using ShowWindow API

[DllImport("user32.dll")]
public static extern bool ShowWindow(IntPtr hWnd, WindowShowStyle nCmdShow);

i have problem trying to kill SRO_CLIENT.exe
foreach (Process pro in Process.GetProcesses())
{

if (pro.ProcessName.Contains("sro_client"))
{
pro.Kill();
}
}


any help?