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

Remove-UDEndpoint

SINOSSI

Rimuove un endpoint pianificato.

SINTASSI

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

DESCRIZIONE

Rimuove un endpoint pianificato.

ESEMPI

Esempio 1

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

Remove-UDEndpoint -Id 'MySchedule'

Rimuove l'endpoint 'MySchedule'

PARAMETRI

-Id

L'Id dell'endpoint da rimuovere.

CommonParameters

Questo cmdlet supporta i parametri comuni: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -Verbose, -WarningAction, -WarningVariable e -ProgressAction. Per maggiori informazioni, veda about_CommonParameters.

INPUT

Nessuno

OUTPUT

System.Object

NOTE

Ultimo aggiornamento

È stato utile?