From ea16a41054f78bf8b2ce37eef7eee75e3c39cb65 Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Thu, 14 Dec 2017 10:42:09 +0100
Subject: [PATCH] Update README.

---
 Updater/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Updater/README.md b/Updater/README.md
index 84d81ed..d3fc10e 100644
--- a/Updater/README.md
+++ b/Updater/README.md
@@ -49,7 +49,7 @@ done by using the following PowerShell commands:
 
 ```powershell
 # create a repetition interval
-$TimeSpan = New-TimeSpan -Minutes 1
+$TimeSpan = New-TimeSpan -Minutes 10
 
 
 # configure a JobTrigger for the task using the repetition interval from above,
@@ -73,11 +73,11 @@ $JobOptions = New-ScheduledJobOption `
 # service and overwriting the configuration and binaries)
 $Cred = Get-Credential
 
-
 # register the job for execution
 Register-ScheduledJob `
-    -FilePath C:\Tools\AutoTx\Update-Service.ps1 `
     -Name "Update-AutoTxService" `
+    -FilePath C:\Tools\AutoTx-Updater\Update-Service.ps1 `
+    -ArgumentList C:\Tools\AutoTx-Updater\UpdaterConfig.inc.ps1 `
     -ScheduledJobOption $JobOptions `
     -Trigger $JobTrigger `
     -Credential $Cred `
-- 
GitLab