CertSrvRestoreEnd 函数 (certbcli.h)
CertSrvRestoreEnd 函数结束证书服务还原会话。
语法
HRESULT CERTBCLI_API CertSrvRestoreEnd(
[in] HCSBC hbc
);
参数
[in] hbc
证书服务备份上下文的句柄。
返回值
返回值为 HRESULT。 值为 S_OK 表示成功。
注解
还原会话完成后,通过调用 CertSrvRestoreEnd 终止会话。 每次成功调用 CertSrvRestorePrepare 时,都应调用 CertSrvRestoreEnd。
还原完成后,请务必对证书服务数据库进行新的完整备份。 这是截断还原的日志文件和建立基础备份集以供将来还原所必需的。 还原后执行的备份不能与还原前 (完整备份或增量) 混合;也就是说,在证书服务数据库还原并进入后续状态后,不能使用还原前备份将数据库还原到该后续状态。
示例
FNCERTSRVRESTOREEND* pfnRestoreEnd;
char * szRestoreEndFunc = "CertSrvRestoreEnd";
HRESULT hr=0;
// Get the address for the desired function.
// hInst was set by calling LoadLibrary for Certadm.dll.
pfnRestoreEnd = (FNCERTSRVRESTOREEND*)GetProcAddress(hInst,
szRestoreEndFunc);
if ( NULL == pfnRestoreEnd )
{
printf("Failed GetProcAddress - %s, error=%d\n",
szRestoreEndFunc,
GetLastError() );
exit(1); // Or other appropriate error action.
}
// When done, release the HCSBC.
// hCSBC would have been set by an earlier call
// to CertSrvRestorePrepare.
hr = pfnRestoreEnd(hCSBC);
if (FAILED(hr))
{
printf("Failed pfnRestoreEnd call [%x]\n", hr);
exit(1); // Or other appropriate error action.
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 无受支持的版本 |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | certbcli.h (包括 Certsrv.h) |
Library | Certadm.lib |
DLL | Certadm.dll |