For the complete documentation index, see llms.txt. This page is also available as Markdown.

Remove-UDEndpoint

SYNOPSIS

Elimina un endpoint programado.

SYNTAX

Remove-UDEndpoint -Id <String> [<CommonParameters>]

DESCRIPTION

Elimina un endpoint programado.

EXAMPLES

Ejemplo 1

$Schedule = New-UDEndpointSchedule 10 -Second
New-UDEndpoint -Schedule $Schedule -Endpoint {
    $Cache:Processes = Get-Process
} -Id 'MySchedule' 

Remove-UDEndpoint -Id 'MySchedule'

Elimina el endpoint 'MySchedule'

PARAMETERS

-Id

El Id del endpoint que se va a eliminar.

CommonParameters

Este cmdlet admite los parámetros comunes: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable y -ProgressAction. Para más información, consulte about_CommonParameters.

INPUTS

Ninguno

OUTPUTS

System.Object

NOTES

Última actualización

¿Te fue útil?