IPSTOVERRIDEREQ::RegisterTrustedPSTOverrideHandler
Office 2013 and later
Last modified: February 24, 2013
Applies to: Outlook
Initiates the unlocking procedure for a Personal Folders (.pst) file.
HRESULT RegisterTrustedPSTOverrideHandler ( LPCWSTR pwzDllPath, LPVOID pvClientData );
The DLL specified by the wzDllPath parameter must be signed using a digital certificate. The DLL must also export a function with the following signature.
extern "C" HRESULT __cdecl HrTrustedPSTOverrideHandlerCallback(IMsgStore *pmstore, IUnknown *pOverride, LPVOID pvClientData)
This function will be called with a pointer to the IMsgStore object for the PST, a pointer to an IUnknown object that implements the IPSTOVERRIDE1 interface, and a pointer to the data originally supplied through pvClientData.
For more information see How to implement a PST override handler to bypass the PSTDisableGrow policy in Outlook 2007.
Show: