我正在尝试使用 GetAppliedGPOList
函数,但无法找到/理解 pGuidExtension
应该是什么。
到目前为止,这是简单的代码:
#include <Windows.h>
#include <UserEnv.h>
int wmain(int argc, WCHAR *argv[])
{
//GetAppliedGPOList
DWORD flags = GPO_LIST_FLAG_MACHINE;
LPCWSTR machineName = NULL; //Local computer is used
PSID sidUser = NULL;
GUID *pGuidExtension; //What is the GUID of the extension?
PGROUP_POLICY_OBJECT *ppGPOList;
return 0;
}
无法运行该函数,因为我需要发送该值。
有关于 pGuidExtension
值的例子吗?
我确实在这里搜索过,但一无所获。
谢谢。
guids 列在
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\GPExtensions
例如 - Group Policy Client Side Extension List . GetAppliedGPOList
在
下查看
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\History\{GuidExtension}
键
我是一名优秀的程序员,十分优秀!