Public/Get-AnyStackHostLogBundle.ps1
|
function Get-AnyStackHostLogBundle { <# .SYNOPSIS Get-AnyStackHostLogBundle - 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 Get-AnyStackHostLogBundle on server $Server" -ForegroundColor Cyan } } |