Hello,

I am trying to implement something similar to the runas /netonly command in
python.

handle = win32security.LogonUser(userName, domain, password,
win32con.LOGON32_LOGON_NEW_CREDENTIALS, win32con.LOGON32_PROVIDER_DEFAULT)
win32security.ImpersonateLoggedOnUser(handle)

These two commands succeed, and I can see the credentials in memory, but
when I attempt to call something like os.system("cmd.exe") and attempt to
authenticate, the security context previous created is not presented, and
authentication fails.

How do I correctly call CreateProcess using the impersonation session that
I just created?

kuree
_______________________________________________
python-win32 mailing list
python-win32@python.org
https://mail.python.org/mailman/listinfo/python-win32

Reply via email to