-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelpers.ps1
24 lines (21 loc) · 941 Bytes
/
Helpers.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#Function to Create-AesKey
function Create-AesKey {
$aesManaged = New-Object "System.Security.Cryptography.AesManaged"
$aesManaged.Mode = [System.Security.Cryptography.CipherMode]::CBC
$aesManaged.Padding = [System.Security.Cryptography.PaddingMode]::Zeros
$aesManaged.BlockSize = 128
$aesManaged.KeySize = 256
$aesManaged.GenerateKey()
[System.Convert]::ToBase64String($aesManaged.Key)
}
#Function to Display Output Values
function DisplayValues {
Write-Host (" ")
Write-Host ("Client ID: " + $myApp.AppId)
Write-Host ("Client Secret: " + $AppKeyValue)
Write-Host (" ")
Write-Host ("Callback URL:") $appURL
Write-Host ("Auth URL:") "https://login.windows.net/$tenantid/oauth2/authorize?resource=https://api.businesscentral.dynamics.com"
Write-Host ("Access Token URL:") "https://login.windows.net/$tenantid/oauth2/token?resource=https://api.businesscentral.dynamics.com"
Write-Host (" ")
}