Public/SmartClientProfiles/Set-SmartClientProfile.ps1

#Requires -Modules 'MilestonePSTools'

function Set-SmartClientProfile {
    [CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
    param (
        # Specifies the Smart Client Profile to update on the Management Server. Any updated properties of this object will be sent to the Management Server.
        [Parameter(Mandatory, ValueFromPipeline)]
        [VideoOS.Management.VmoClient.SmartClientProfile]
        $SmartClientProfile,

        # Pass the Smart Client Profile back into the pipeline
        [Parameter()]
        [switch]
        $PassThru
    )

    begin {
        $vmo = Get-VmoClient
    }

    process {
        try {
            if ($PSCmdlet.ShouldProcess("Smart Client Profile '$($SmartClientProfile.Name)'",'Update')) {
                $SmartClientProfile.Update()
            }

            if ($PassThru) {
                Write-Output $SmartClientProfile
            }
        }
        catch {
            $vmo.Dispose()
            throw
        }
    }

    end {
        $vmo.Dispose()
    }
}