From 99e45fdd262d491ae462dcc5d0d2be423b4f7062 Mon Sep 17 00:00:00 2001 From: David <8304331+kadrim@users.noreply.github.com> Date: Tue, 12 Feb 2019 10:34:10 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aaa62a3..380da2e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Place the provided .ini File in the same directory as the .exe and change it acc Option | Default-Value | Description ------ | ------------- | ----------- -Interval | 10000 | Time in milliseconds between each check +Interval | 60000 | Time in milliseconds between each check Process | backupService-ab.exe | The name of the backup-process (case-sensitive) Threshold | 50000000 | If this is set higher than **0** the backup-process must also have a memory-footprint this large (in bytes) so the program detects a running backup PauseCmd | "C:\Program Files\PrimoCache\rxpcc.exe" pause -s -a | Command to be issued as soon as a running backup is detected (keep the quotation marks if the Path to the command contains spaces!) From 88c23ac40d7eddc5b93638cd33dbf3aba22a761e Mon Sep 17 00:00:00 2001 From: David <8304331+kadrim@users.noreply.github.com> Date: Tue, 12 Feb 2019 10:35:22 +0100 Subject: [PATCH 2/2] Add files via upload --- PrimoCacheBackupDetect.au3 | 2 +- PrimoCacheBackupDetect.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PrimoCacheBackupDetect.au3 b/PrimoCacheBackupDetect.au3 index a584961..3c46ab2 100644 --- a/PrimoCacheBackupDetect.au3 +++ b/PrimoCacheBackupDetect.au3 @@ -23,7 +23,7 @@ PrimoCacheBackupDetect() Func ReadConfig() Global Const $configFile = @ScriptDir & "\PrimoCacheBackupDetect.ini" - Global $configInterval = Int(IniRead($configFile, "Config", "Interval", "10000")) + Global $configInterval = Int(IniRead($configFile, "Config", "Interval", "60000")) Global $configProcess = IniRead($configFile, "Config", "Process", "backupService-ab.exe") Global $configThreshold = Int(IniRead($configFile, "Config", "Threshold", "50000000")) Global $configPauseCmd = IniRead($configFile, "Config", "PauseCmd", '"C:\Program Files\PrimoCache\rxpcc.exe" pause -s -a') diff --git a/PrimoCacheBackupDetect.ini b/PrimoCacheBackupDetect.ini index d65014f..2d03415 100644 --- a/PrimoCacheBackupDetect.ini +++ b/PrimoCacheBackupDetect.ini @@ -1,5 +1,5 @@ [Config] -Interval=10000 +Interval=60000 Process=backupService-ab.exe Threshold=50000000 PauseCmd="C:\Program Files\PrimoCache\rxpcc.exe" pause -s -a