Remove-AzureADApplicationProxyApplication

Löscht eine Anwendungsproxy Anwendung.

Syntax

Remove-AzureADApplicationProxyApplication
      -ObjectId <String>
      [-RemoveADApplication <Boolean>]
      [<CommonParameters>]

Beschreibung

Das Cmdlet Remove-AzureADApplicationProxyApplication entfernt Anwendungsproxy Konfigurationen aus einer bestimmten Anwendung in Azure Active Directory und kann die Anwendung vollständig löschen, wenn angegeben.

Beispiele

Beispiel 1

PS C:\> Remove-AzureADApplicationProxyApplication -ObjectId 257098d1-f8dd-4efb-88a2-1c92d3654f10

Beispiel 1: Entfernen einer Proxyanwendung

Beispiel 2

PS C:\> Remove-AzureADApplicationProxyApplication -ObjectId 0d7b0f02-3f63-414d-8d20-4b8bd0291e42 -RemoveADApplication $true

Beispiel 2: Entfernen einer Proxyanwendung und Entfernen von Azure AD vollständig

Parameter

-ObjectId

Die eindeutige Anwendungs-ID der Anwendung. Dies kann mithilfe des Befehls Get-AzureADApplication gefunden werden. Sie können dies auch im Azure-Portal finden, indem Sie zu AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on this page.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-RemoveADApplication

Dadurch können Sie die Anwendung vollständig löschen. Wenn dies false (Standard) ist, werden Anwendungsproxy Eigenschaften aus der Anwendung entfernt, aber die Anwendung ist weiterhin vorhanden. Wenn dies wahr ist, wird die Anwendung vollständig aus Azure AD entfernt.

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False