-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.0.0 #35
Conversation
Add repair function and improve backup & restore
Add new function to download release from Alteryx license portal
Update start, stop, and restart functions to report status properly
Fix issue with multiple return statements and better reporting for completion with errors
Add new ping option to check the status of Alteryx Server
Revert to calling service utility to retrieve full version number
Fix check for backup path and amend error message
Add option to open the Alteryx application
Update product reference to global properties
Add option to customise script configuration interactively
30 better error reporting
Add check to create target directory if it does not exist
Fix issue where the license token would be incorrectly parsed due to a carriage return
Encrypt keys and tokens as well as support for downloading Intelligence Suite
} | ||
if ($ConfigureLicenseAPI) { | ||
$LicenseAPIToken = (Read-Host -Prompt $LicenseAPIPrompt).Trim() | ||
$EncryptedLicenseAPIToken = ConvertFrom-SecureString -SecureString (ConvertTo-SecureString -String $LicenseAPIToken.ToString() -AsPlainText -Force) |
Check failure
Code scanning / PSScriptAnalyzer
File 'Invoke-SetupScript.ps1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead. Error
$ServerAPIKey = (Read-Host -Prompt $APIKeyPrompt).Trim() | ||
$ServerAPISecret = (Read-Host -Prompt $APISecretPrompt).Trim() | ||
$ServerAPIToken = [Ordered]@{ | ||
"key" = ConvertFrom-SecureString -SecureString (ConvertTo-SecureString -String $ServerAPIKey -AsPlainText -Force) |
Check failure
Code scanning / PSScriptAnalyzer
File 'Invoke-SetupScript.ps1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead. Error
$ServerAPISecret = (Read-Host -Prompt $APISecretPrompt).Trim() | ||
$ServerAPIToken = [Ordered]@{ | ||
"key" = ConvertFrom-SecureString -SecureString (ConvertTo-SecureString -String $ServerAPIKey -AsPlainText -Force) | ||
"secret" = ConvertFrom-SecureString -SecureString (ConvertTo-SecureString -String $ServerAPISecret -AsPlainText -Force) |
Check failure
Code scanning / PSScriptAnalyzer
File 'Invoke-SetupScript.ps1' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead. Error
No description provided.