BackupMinute Property
The BackupMinute property contains the automatic backup minute.
Syntax
SiteCafe.Server.Config.BackupMinute [=long]
|
Possible Values
Long value that specifies or retrieves the minute.
|
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