您好,登錄后才能下訂單哦!
這篇文章主要介紹怎么使用createprocessasuser函數,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
如果想通過服務向桌面用戶Session創建一個復雜UI程序界面,則需要使用CreateProcessAsUser函數為用戶創建一個新進程用來運行相應的程序。打開Interop類繼續添加下面代碼:
CreateProcessAsUser函數原型
BOOLWINAPICreateProcessAsUser(
_In_opt_HANDLEhToken,
_In_opt_LPCTSTRlpApplicationName,
_Inout_opt_LPTSTRlpCommandLine,
_In_opt_LPSECURITY_ATTRIBUTESlpProcessAttributes,
_In_opt_LPSECURITY_ATTRIBUTESlpThreadAttributes,
_In_BOOLbInheritHandles,
_In_DWORDdwCreationFlags,
_In_opt_LPVOIDlpEnvironment,
_In_opt_LPCTSTRlpCurrentDirectory,
_In_LPSTARTUPINFOlpStartupInfo,
_Out_LPPROCESS_INFORMATIONlpProcessInformation
);
使用CreateProcessAsUser的范例代碼
--------CreateProcessEx.h文件--------
#ifndef_CREATE_PROCESS_EX_H_
#define_CREATE_PROCESS_EX_H_
#include<windows.h>
#include"tchar.h"
#pragmacomment(lib,"shell32")
#pragmacomment(lib,"user32")
#pragmacomment(lib,"Advapi32.lib")
//以普通權限啟動進程
BOOLCreateProcessLow(TCHAR*lpApplicationName,
TCHAR*lpCommandLine=NULL,
TCHAR*lpDirectory=NULL,
UINTnShow=SW_SHOWNORMAL);
//以管理員權限啟動進程
BOOLCreateProcessHigh(TCHAR*strProcessName,
TCHAR*strCommandLine=NULL,
TCHAR*lpDirectory=NULL,
UINTnShow=SW_SHOWNORMAL);
#endif//_CREATE_PROCESS_EX_H_
--------CreateProcessEx.h文件--------
--------CreateProcessEx.cpp文件--------
#include"CreateProcessEx.h"
#include<string>
usingnamespacestd;
以上是“怎么使用createprocessasuser函數”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。