Public/Remove-AnyStackStaleTag.ps1
|
function Remove-AnyStackStaleTag { <# .SYNOPSIS Remove-AnyStackStaleTag - A specialized AnyStack Enterprise tool. .DESCRIPTION Autogenerated cmdlet for VCF.TagManager. #> [CmdletBinding(SupportsShouldProcess=$true)] param( [Parameter(Mandatory=$true)] [string]$Server ) process { $ErrorActionPreference = 'Stop' Write-Host "[ANYSTACK] Running Remove-AnyStackStaleTag on server $Server" -ForegroundColor Cyan } } |