This question is a little open-ended and probably not specific to IronPython. You might have some more luck in a different context. >From what I recall, there's no way to do something like LogonUser from .NET without making a P/Invoke call to the underlying Windows API. P/Invoke isn't currently supported directly from IronPython; you'd either have to do the hard part by using System.Reflection.Emit to generate the code yourself or you'd have to write a small C# assembly that contains the P/Invoke definitions you need and then use those definitions from IronPython.
On Tue, Sep 30, 2008 at 6:13 PM, Knic Knic <[EMAIL PROTECTED]> wrote: > I want to generate an account token, but I cannot seem to find anything > like LogonUser to call. > > Thanks, > Knic > > _______________________________________________ > Users mailing list > [email protected] > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > >
_______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
