I\'ve done some research but I would like to be able to call control-alt-delete from python. If that is not possible is it possible to call it from command line because then I c
On reading OP's comments, his/her original need was to change the user's password. In fact, this can be done with:
from win32com import adsi ads_obj = adsi.ADsGetObject("WinNT://localhost/%s,user" % username) ads_obj.SetPassword(password)