Skip to content

Commit 104820c

Browse files
authored
Merge pull request #103579 from Karishma-Tiwari-MSFT/patch-145
(ForumsTeam) fixes MicrosoftDocs/azure-docs#47426
2 parents fe9132a + bd2bfcb commit 104820c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-desktop/manage-resources-using-ui-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Run the following PowerShell commands to retrieve the web app URL and set it as
105105
```powershell
106106
$webApp = Get-AzWebApp -ResourceGroupName $resourceGroupName -Name $appName
107107
$redirectUri = "https://" + $webApp.DefaultHostName + "/"
108-
Get-AzureADApplication | where { $_.AppId -match $servicePrincipalCredentials.UserName } | Set-AzureADApplication -ReplyUrls $redirectUri
108+
Get-AzureADApplication -All $true | where { $_.AppId -match $servicePrincipalCredentials.UserName } | Set-AzureADApplication -ReplyUrls $redirectUri
109109
```
110110

111111
Now that you've added a redirect URI, you next need to update the API URL so the management tool can interact with the API-backend service.

0 commit comments

Comments
 (0)