The PostExportScript is run on the exported Linux machine after the virtual export is complete. This script does not receive parameters from the protected machine.

Note: The original machine from which the VM was cloned should be powered off before starting the VM.

The following script returns the start time of the exported virtual machine in hours, minutes, and seconds, based on the system time of the Core. This information is logged in PostExportScriptResult.txt, which is stored in the root home directory.

Sample PostExportScript

#!/bin/bash
echo 
"`date +%H:%M:%S` Start time of the machine. This indicates that virtual export has been completed and machine is active." > ~/PostExportScriptResult.txt
exit 0