In paramiko, we try to find a Pageant window using either the win32all module or the ctypes module.<div><br></div><div>win32all is not implemented on IronPython, which is to be expected, but ctypes is.  However, FindWindowA doesn't do what we expect:</div>
<div>On CPython:</div><div>>>> import ctypes</div><div>>>> ctypes.windll.user32.FindWindowA('Pageant','Pageant')</div><div>131376</div><div><br></div><div>On IronPython:</div><div>>>> import ctypes</div>
<div>>>> ctypes.windll.user32.FindWindowA('Pageant','Pageant')</div><div>0</div><div><br></div><div>Am I doing something that isn't expected to work?</div><div><br></div><div>Cheers,</div><div>
<br></div><div><br></div><div>Michael van der Kolff</div>