On Thursday, 29 March 2018 00:48:58 UTC-7, Stefan wrote: > Sorry, there's no way. > That's why we have to ship TortoisePlink and not just plink: TortoisePlink is > a modified version of plink that has many changes done so that the cmd window > does not appear. > So as long as you can not change the code of the windows ssh client, you're > out of luck. > > Stefan
I was wondering about this too. Is there absolutely no way to hide the command window from Tortoise? In an unrelated project, I was able to launch subprocesses (in this case ssh-keygen) from a Windows forms app with the following flags (C# code for illustration, but I assume the C++ API is the same): Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.CreateNoWindow = true; // set command, args, etc p.Start(); p.WaitForExit(); Both UseShellExecute and CreateNoWindow with these settings are required for the cmd box to not appear -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/17391502-82e3-43ec-ad55-c89955ac4200%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
