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