I successfully implemented the solution from How does one invoke the Windows Permissions dialog programmatically? and related: How to display file properties dialog security tab from c#.
public static bool ShowFileProperties(string Filename)
{
SHELLEXECUTEINFO info = new SHELLEXECUTEINFO();
info.cbSize = System.Runtime.InteropServices.Marshal.SizeOf(info);
info.lpVerb = "properties";
info.lpFile = Filename;
info.lpParameters = "Security";
info.nShow = SW_SHOW;
info.fMask = SEE_MASK_INVOKEIDLIST;
return ShellExecuteEx(ref info);
}
However, I would like to get to the Permissions window as you would with the Edit.. button from that dialogue.
Any ideas?


You can click the button "Edit..." programmatically:
Edited example from here, matching to the window title seen in your Screenshot:
Important! The linked source of this code says the following:
But this does not work in the "Properties" window. It does not find "Edit..." in this level. You have to search for it one level deeper: