49 lines
2.3 KiB
Plaintext
49 lines
2.3 KiB
Plaintext
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include <winver.h>
|
|
#include "resource.h"
|
|
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Secondary Logon Service Notification DLL"
|
|
#define VER_INTERNALNAME_STR "SCLGNTFY.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "SCLGNTFY.DLL"
|
|
|
|
#include "common.ver"
|
|
|
|
#include "uevents.rc"
|
|
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
|
|
IDS_FAILED_GET_DSROLE "Error %d to get DsRolePrimaryDomainInfo."
|
|
IDS_ERROR_LOAD_USERENV "Error %d to load userenv.dll."
|
|
IDS_ERROR_GET_PROC_ADDR "Error %d to get procedure address of RefreshPolicy."
|
|
IDS_ERROR_CREATE_GPO_INSTANCE "Error %x to create a group policy object instance."
|
|
IDS_ERROR_OPEN_LPO "Error %x to open LocalMachinePolicy."
|
|
IDS_ERROR_GET_REGISTRY_KEY "Error %x GetRegistryKey."
|
|
IDS_ERROR_OPEN_EFSKEY "Error %d to create/open EFS policy key."
|
|
IDS_ERROR_CREATE_EFSBLOB "Error %d to create recovery policy blob."
|
|
IDS_ERROR_SAVE_EFSBLOB "Error %d to save recovery policy blob to registry."
|
|
IDS_ERROR_SAVE_LPO "Error %x to save local machine policy."
|
|
IDS_ERROR_GET_DSROOT "Error %d to get the DS root name."
|
|
IDS_ERROR_BIND_DS "Error %d to open and bind to DS."
|
|
IDS_DEFAULT_EFS_POLICY "Domain EFS Recovery Policy"
|
|
IDS_DEFAULT_DOMAIN_POLICY "Domain Default Policy"
|
|
IDS_ERROR_LINK_GPO "Error %x to link GPO : %s to domain %s."
|
|
IDS_ERROR_NO_MEMORY "Not enough memory to process this command."
|
|
IDS_ERROR_GET_EFS_GPOPATH "Error %x to get ADSI path of the EFS policy."
|
|
IDS_ERROR_GET_DEFAULT_GPOPATH "Error %x to get ADSI path of the domain account policy."
|
|
IDS_ERROR_NEW_GPO "Error %x to open GPO %s in domain %s."
|
|
IDS_ERROR_GETGPO_FILE_PATH "Error %x to get file system path for GPO %s."
|
|
IDS_ERROR_CREATE_DIRECTORY "Error %d to create directory %s."
|
|
IDS_ERROR_COPY_TEMPLATE "Error %d to copy the default template to %s."
|
|
IDS_ERROR_GETGPO_REGKEY "Error %x to get registry key for GPO %s."
|
|
IDS_ERROR_SAVE_GPO "Error %x to save GPO %s."
|
|
IDS_ERROR_ADD_CERTIFICATE "Error %d to add recovery certificate to the EFS store."
|
|
|
|
END
|