Authorization Functions


AuthzInstallSecurityEventSource Function

The AuthzInstallSecurityEventSource function installs the specified source as a security event source.

Syntax

C++
BOOL WINAPI AuthzInstallSecurityEventSource(
  __in  DWORD dwFlags,
  __in  PAUTHZ_SOURCE_SCHEMA_REGISTRATION pRegistration
);

Parameters

dwFlags [in]

This parameter is reserved for future use and must be set to zero.

pRegistration [in]

A pointer to an AUTHZ_SOURCE_SCHEMA_REGISTRATION structure that contains information about the security event source to be added.

The members of the AUTHZ_SOURCE_SCHEMA_REGISTRATION structure are used as follows to install the security event source in the security log key:

  • The szEventSourceName member is added as a registry key under
    HKEY_LOCAL_MACHINE
        SYSTEM
            CurrentControlSet
                Services
                    EventLog
                        Security
  • The szEventMessageFile member is added as the data in a REG_SZ value named EventMessageFile under the event source key.
  • The szEventAccessStringsFile member is added as the data in a REG_SZ value named ParameterMessageFile under the event source key.
  • If the registry path does not exist, it is created.

  • If the szEventSourceXmlSchemaFile member is not NULL, it is added as the data in a REG_SZ value named XmlSchemaFile under the event source key. This value is not used.
  • The szExecutableImagePath member must be set to NULL.

Return Value

If the function succeeds, the function returns TRUE.

If the function fails, it returns FALSE. For extended error information, call GetLastError.

Requirements

Minimum supported clientNone supported
Minimum supported serverWindows Server 2003
RedistributableWindows 2000 Authorization Manager Runtime on Windows 2000 Server with SP4
HeaderAuthz.h
LibraryAuthz.lib
DLLAuthz.dll

See Also

AUTHZ_SOURCE_SCHEMA_REGISTRATION
AuthzUninstallSecurityEventSource

Send comments about this topic to Microsoft

Build date: 9/11/2009

Tags :


Page view tracker