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