Hello together,
I'm monitoring our external storage, a so called Buffalo Terastation with the "folder" sensor. The trashbox is activated and the video-surveillance just drops about 20 GB of data in half an hour.
I want to delete the trashbox\Videoüberwachung folder if the foldersize exceeds 400 GB.
Therefore I wrote an powershell-Script and set it as an notification on the foldersensor from the terastation. Unfortunately it doesn't work.
This is my Object-Trigger: Objekt-Trigger Trigger: Schwellenwert
Wenn der Kanal Ordnergröße (Byte) für mindestens 5 Sekunden Über 400000000000 ist, führe Ausführung PowerShell Skript ES004 aus
Wenn die Bedingung nicht mehr zutrifft, nachdem eine Benachrichtigung ausgelöst wurde, führe BHS - E-Mail-Benachrichtigung Klaus, Maxi aus
And this is my powershell-Script:
$entferntesVerzeichnisRemove = "
ES004\share\trashbox\Videoüberwachung\*"
Remove-Item -Path $entferntesVerzeichnisRemove -Recurse -Force -ErrorAction SilentlyContinue
Can you help me?
Add comment