I've done this integration a number of times and I've always had to resort to creating a C# program to discover what the options really are:
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine("[" + i + "]: " + args[i]);
}
Console.Read();
}
}
then I hook it up to the dialog and do a diff.
Here's the current options that I've put in:
C:\Program Files\WinMerge\WinMergeU.exe /maximize /e /x /ul /ur
/dl "{1}" /dr "{2}" "{3}" "{4}"
4 comments:
Nice!!! Thank you for sharing this tip!
You're welcome. I always wonder if anyone cares.
This helped me incredibly as well, thx.
Glad to hear it. When people are helped it inspires me to post.
Post a Comment