Funzione CertSrvRestoreEnd (certbcli.h)

La funzione CertSrvRestoreEnd termina una sessione di ripristino di Servizi certificati.

Sintassi

HRESULT CERTBCLI_API CertSrvRestoreEnd(
  [in] HCSBC hbc
);

Parametri

[in] hbc

Handle in un contesto di backup di Servizi certificati.

Valore restituito

Il valore restituito è un HRESULT. Un valore di S_OK indica l'esito positivo.

Commenti

Al termine di una sessione di ripristino, terminare la sessione chiamando CertSrvRestoreEnd. Per ogni chiamata riuscita a CertSrvRestorePrepare, dovrebbe essere presente una chiamata a CertSrvRestoreEnd.

Al termine di un ripristino, è importante eseguire un nuovo backup completo del database di Servizi certificati. Ciò è necessario per troncare i file di log ripristinati e per stabilire un set di backup di base per i ripristini futuri. I backup eseguiti dopo un ripristino non possono essere combinati con i backup (completi o incrementali) eseguiti prima del ripristino; ovvero, dopo il ripristino di un database di servizi certificati e lo stato successivo è stato eseguito, non è possibile usare i backup di pre-ripristino per ripristinare il database a tale stato successivo.

Esempio

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.
}

Requisiti

Requisito Valore
Client minimo supportato Nessuno supportato
Server minimo supportato Windows Server 2003 [solo app desktop]
Piattaforma di destinazione Windows
Intestazione certbcli.h (includere Certsrv.h)
Libreria Certadm.lib
DLL Certadm.dll

Vedi anche

CertSrvRestorePrepare

Uso delle funzioni di backup e ripristino dei servizi certificati