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