Condividi tramite


Importazione (DiskShadow)

Importa una copia shadow trasportabile da un file di metadati caricato nel sistema.

[IMPORTANTE] Prima di poter usare questo comando, è necessario usare il comando caricare i metadati per caricare un file di metadati DiskShadow.

Sintassi

import

Osservazioni:

  • Le copie shadow trasportabili non vengono archiviate immediatamente nel sistema. I dettagli vengono archiviati in un file XML del documento dei componenti di backup, che DiskShadow richiede automaticamente e salva in un file di metadati .cab nella directory di lavoro. Usare il comando impostare i metadati per modificare il percorso e il nome del file XML.

Esempi

Di seguito è riportato un esempio di script DiskShadow che illustra l'uso del comando import:

#Sample DiskShadow script demonstrating IMPORT
SET CONTEXT PERSISTENT
SET CONTEXT TRANSPORTABLE
SET METADATA transHWshadow_p.cab
#P: is the volume supported by the Hardware Shadow Copy provider
ADD VOLUME P:
CREATE
END BACKUP
#The (transportable) shadow copy is not in the system yet.
#You can reset or exit now if you wish.

LOAD METADATA transHWshadow_p.cab
IMPORT
#The shadow copy will now be loaded into the system.