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