Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Exclude properties which have not changed from default

...

If this is checked, then only modified properties are exported. This results in a smaller, simpler export file. Uncheck this box to export all properties regardless of whether they have changed. This can be useful to see which properties are available, if you wish to edit the file manually. 

Include encrypted passwords and other sensitive values

If this is checked, then passwords and other sensitive values will be encrypted and included in the export files. Uncheck this box to exclude all passwords and sensitive values from the export file. 

Note that the encryption key and vector will be required to import the encrypted passwords into another Continua CI installation unless the destination server uses the same encryption key and vector. The values for these can be found in the appSettings section of server configuration file under the keys "Continua.SymmetricEncryptionKey" and "Continua.SymmetricEncryptionVector".

e.g.


Code Block
<appSettings>

        <!-- DO NOT remove or change the keys BELOW -->
        <!-- They are set during the first installation, changing them will require you to re-enter all passwords fields -->
        <!-- We recommend that you keep a backup of these values  -->
        <add key="Continua.HashSalt" value="**************"/>
        <add key="Continua.SymmetricEncryptionKey" value="**************" />
        <add key="Continua.SymmetricEncryptionVector" value="**************" />
        <!-- DO NOT remove these the keys ABOVE  -->

        .....

</appSettings>