Delphi and CreateProcessAsUser example?

Does anyone have an example of using CreateProcessAsUser in Delphi? I am using Delphi 2009, not .NET Delphi.

+3
source share
2 answers

Take a look at CreateProcAsUser in JclMiscel from the JCL library

You can use it as an easier solution, or you check the code to find out how the original works.

+2
source

Being a Win32 API function, CreateProcessAsUser works the same in all languages.

Have you tried Google Code Search ? One coincidence is this one .

0
source

Source: https://habr.com/ru/post/1743542/


All Articles