Home > Mobile >  Can I create local interactive windows user session programmatically
Can I create local interactive windows user session programmatically

Time:09-05

I have a windows service that runs under LocalSystem account to manage below scenario

  1. I dont want to share account password with users.

  2. I have username and password of the domain user that should logged in to machine.

  3. Autologon not suitable. Because, when a user locks workstation or logs off from account, it will ask for credentials. Users will not have account password.

  4. I tried credential provider, It can auto unlock or logon to computer with credentials but, its not useful in my case (Hard to implement, manage and register)

  5. I tried Task Manager Users

    CodePudding user response:

    I implemented credential provider. I used https://github.com/phaetto/windows-credentials-provider as base.

  • Related