Scripts/Get-iSpyAgentAlert.ps1
Function Get-iSpyAgentAlert { <# .SYNOPSIS Returns collection of current alerts .DESCRIPTION Returns collection of current alerts .PARAMETER iSpyHost Computer name or IP (optional, default = LOCALHOST) .PARAMETER Port Port number to access AgentDVR (optional, default = 8090) .EXAMPLE Get-iSpyAgentAlert -iSpyHost MyCamsSystem .EXAMPLE Get-iSpyAgentAlert -iSpyHost MyCamsSystem -Port 7000 .EXAMPLE Get-iSpyAgentAlert -iSpyHost 192.168.10.20 .EXAMPLE Get-iSpyAgentAlert -iSpyHost 192.168.10.20 -Port 7000 .NOTES More than one host name and port can be entered, values must be seperated by commas: Get-iSpyAgentAlert -iSpyHost MyCamsSystem1, MyCamsSystem2, MyCamsSystem3 Get-iSpyAgentAlert -iSpyHost MyCamsSystem1, MyCamsSystem2, MyCamsSystem3 -Port 7000, 8000, 9000 Get-iSpyAgentAlert -iSpyHost 192.168.10.20, 192.168.10.30, 192.168.10.40 Get-iSpyAgentAlert -iSpyHost 192.168.10.20, 192.168.10.30, 192.168.10.40 -Port 7000, 8000, 9000 .LINK N/A #> [CmdletBinding ()] Param ( [Parameter (Mandatory = $False, ValueFromPipeline = $True, ValueFromPipelineByPropertyName = $True, HelpMessage = 'Enter computer name or IP' ) ] [String[]]$iSpyHost = 'localhost', [Parameter (Mandatory = $False, ValueFromPipeline = $True, ValueFromPipelineByPropertyName = $True, HelpMessage = 'Enter port number' ) ] [String[]]$Port ) BEGIN { $Index = 0 Function Show-Output ($Values) { [PSCustomObject]@{ iSpyHost = $Values[0] CameraId = $Values[1] Message = $Values[2] Reason = $Values[3] Time = $Values[4] Read = $Values[5] Tags = $Values[6] Status = $Values[7] } } } PROCESS { ForEach ($Computer In $iSpyHost) { Show-ProgressBar -Activity 'iSpy Agent DVR' -TotalItems $iSpyHost.Count -Counter ($Index + 1) -ProcessItem $Computer.ToUpper() If (Test-Connection -ComputerName $Computer -Count 1 -Quiet) { Try { If ($Port) { $hPort = $Port[$Index] } If ($hPort.Length -eq 0) { $hPort = '8090' } $iSpyHostURL = -join ('http://', $Computer, ":$hPort") $Results = Invoke-WebRequest -Uri $iSpyHostURL/Alerts.json | ConvertFrom-Json ForEach ($Item In $Results.Alerts) { [Long]$Temp = $Item.Time # Bug recognizing a valid string value <?> $MsgTime = (Get-Date $Temp).ToLocalTime() Show-Output ($Computer.ToUpper(), $Item.OId, $Item.Msg, $Item.Reason, $MsgTime, $Item.Read, $Item.Tags, 'Ok') } } Catch { Show-Output ($Computer.ToUpper(), '', '', '', '', '', '', $PSItem.Exception.Message) } } Else { Show-Output ($Computer.ToUpper(), '', '', '', '', '', '', 'Unreachable') } $Index++ } } END {} } |