public/Set-TNPolicyPortRange.ps1
function Set-TNPolicyPortRange { <# .SYNOPSIS Sets properties for policy port ranges .DESCRIPTION Sets properties for policy port ranges .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 PolicyId The ID of the target policy .PARAMETER Port The port of the Nessus or tenable.sc server. Defaults to 8834 which is the default port for Nessus. .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:\> Set-TNPolicyPortRange Sets properties for policy port ranges #> [CmdletBinding()] param ( [Parameter(ValueFromPipelineByPropertyName)] [object[]]$SessionObject = (Get-TNSession), [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [Alias("Id")] [int32[]]$PolicyId, [Parameter(Mandatory, ValueFromPipelineByPropertyName)] [string[]]$Port, [switch]$EnableException ) process { foreach ($session in $SessionObject) { $PSDefaultParameterValues["*:SessionObject"] = $session foreach ($policy in $PolicyId) { $params = @{ SessionObject = $session Path = "/policies/$policy" Method = 'PUT' ContentType = "application/json" Parameter = "{`"settings`": {`"portscan_range`": `"$($Port -join ",")`"}}" } $null = Invoke-TNRequest @params Get-TNPolicyPortRange -SessionId $session.SessionId -PolicyId $policy } } } } |