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

Remove-UDEndpoint

Removes a scheduled endpoint.

SYNOPSIS

Removes a scheduled endpoint.

SYNTAX

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

DESCRIPTION

Removes a scheduled endpoint.

EXAMPLES

Example 1

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

Remove-UDEndpoint -Id 'MySchedule'

Removes the endpoint 'MySchedule'

PARAMETERS

-Id

The Id of the endpoint to remove.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable, and -ProgressAction. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

Last updated

Was this helpful?