EnableBackups Property
The EnableBackups property indicates whether automatic backups are enabled.
Syntax
SiteCafe.Server.Config.EnableBackups [=bool]
|
Possible Values
Boolean value that specifies or retrieves the automatic backup status.
|
The property is read/write.
Remarks
Examples
The following example automatically creates a backup at 9:00 o'clock.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe.Server.Config.EnableBackups = true;
SiteCafe.Server.Config.BackupCopies = 1;
SiteCafe.Server.Config.BackupDirectory = "c:\backups";
SiteCafe.Server.Config.BackupHour = 9;
SiteCafe.Server.Config.BackupMinute = 0;
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top