c# - IPC Between SYSTEM Account and Current User -
i need write c# program executes operations requiring elevated privileges, has ui limited-rights user can interact (to initiate privileged operations , see results of operations). how can achieve this?
you have zillion alternatives. i'd consider:
1) use windows service handle "operations requiring elevated privileges",
2) write small, simple winforms app ui, ,
3) use windows "named pipes" communicate between client , service
here's tutorial:
http://tech.pro/tutorial/855/wcf-tutorial-basic-interprocess-communication
Comments
Post a Comment