public/Get-TNReport.ps1
function Get-TNReport { <# .SYNOPSIS Gets a list of reports .DESCRIPTION Gets a list of reports .PARAMETER SessionObject Optional parameter to force using specific SessionObjects. By default, each command will connect to all connected servers that have been connected to using Connect-TNServer .PARAMETER ReportId The ID of the target report .PARAMETER Name The Name of the target report .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with 'sea of red' exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this 'nice by default' feature off and enables you to catch exceptions with your own try/catch. .EXAMPLE PS C:\> Get-TNReport -ReportId 10 Gets reports for ReportID 10 .EXAMPLE PS C:\> Get-TNReport | Get-TNReport Gets reports for every scan #> [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName)] [object[]]$SessionObject = (Get-TNSession), [Parameter(ValueFromPipelineByPropertyName)] [Alias("Id")] [int32]$ReportId, [string[]]$Name, [switch]$EnableException ) process { foreach ($session in $SessionObject) { $PSDefaultParameterValues["*:SessionObject"] = $session if (-not $session.sc) { Stop-PSFFunction -Message "Nessus not supported" -Continue } if (-not $ReportId) { $path = "/reportDefinition?filter=usable&fields=name,type,ownerGroup,owner,schedule,canManage,canUse,status" } else { $path = "/reportDefinition/$($ReportId)?filter=usable&fields=name,type,ownerGroup,owner,schedule,canManage,canUse,status" } try { $results = Invoke-TNRequest -SessionObject $session -EnableException -Path $path -Method GET | ConvertFrom-TNRestResponse if ($Name) { $results | Where-Object Name -in $name } else { $results } } catch { if ($PSItem -match "does not exist") { Stop-PSFFunction -EnableException:$EnableException -Message $PSItem -ErrorRecord $PSItem } } } } } |