We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb69139 + d38bca6 commit 94f88b8Copy full SHA for 94f88b8
articles/active-directory/manage-apps/hide-application-from-user-portal.md
@@ -8,7 +8,7 @@ ms.service: active-directory
8
ms.subservice: app-mgmt
9
ms.workload: identity
10
ms.topic: conceptual
11
-ms.date: 11/26/2019
+ms.date: 03/25/2020
12
ms.author: mimart
13
ms.reviewer: kasimpso
14
@@ -48,7 +48,7 @@ Connect-AzureAD
48
$objectId = "<objectId>"
49
$servicePrincipal = Get-AzureADServicePrincipal -ObjectId $objectId
50
$tags = $servicePrincipal.tags
51
-$tags.Add("HideApp")
+$tags += "HideApp"
52
Set-AzureADServicePrincipal -ObjectId $objectId -Tags $tags
53
```
54
0 commit comments