0
Found solutions myself :)
You need to use System.Diagnostics.ProcessStartInfo xxx = new ProcessStartInfo(@FilePath);
xxx.WorkingDirectory = DirectoryPath
System.Diagnostics.Process.Start(xxx);
Note that I've found this at blogs.msdn.com, first time in my life this was the one, and the only page with working solution I've found so far :D