public/Remove-TNOrganization.ps1
function Remove-TNOrganization { <# .SYNOPSIS Removes a list of organizations .DESCRIPTION Removes a list of organizations .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 Name The name of the target organization .PARAMETER InputObject Description for InputObject .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:\> Remove-TNOrganization Removes a list of organizations #> [CmdletBinding()] param ( [Parameter(ValueFromPipelineByPropertyName)] [object[]]$SessionObject = (Get-TNSession), [parameter(Mandatory, ValueFromPipelineByPropertyName)] [string[]]$Name, [parameter(ValueFromPipeline)] [object[]]$InputObject, [switch]$EnableException ) process { foreach ($session in $SessionObject) { $PSDefaultParameterValues["*:SessionObject"] = $session if (-not $session.sc) { Stop-PSFFunction -EnableException:$EnableException -Message "Only tenable.sc supported" -Continue } if (-not $InputObject) { $InputObject = Get-TNOrganization -Organization $Name if (-not $InputObject) { Stop-PSFFunction -Message "Organization $Name does not in exist at $($session.URI)" -Continue } } foreach ($org in $InputObject) { $params = @{ SessionObject = $session EnableException = $EnableException Method = "DELETE" Path = "/organization/$($org.Id)" } Invoke-TNRequest @params | ConvertFrom-TNRestResponse } } } } |