Skip to content

Instantly share code, notes, and snippets.

@jeevan-vj
Created July 15, 2019 08:35
Show Gist options
  • Save jeevan-vj/1979a055eb9d6f251f9a490932afc91e to your computer and use it in GitHub Desktop.
Save jeevan-vj/1979a055eb9d6f251f9a490932afc91e to your computer and use it in GitHub Desktop.
Create ADD App
#Create AD app
$dummyUrl = "https://dummy.dummy.com"
$passpowrd = "Qwerty@123!"
$securePassword = ConvertTo-SecureString -String $passpowrd -AsPlainText -Force
$app = New-AzureRmADApplication -DisplayName $dummyUrl `
-IdentifierUris $dummyUrl `
-HomePage $dummyUrl `
-Password $securePassword -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment