File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -775,7 +775,12 @@ Install-DownloadedProject -Project $project `
775775
776776# Configure the installation if not running in non-interactive mode
777777if (-not $NonInteractive ) {
778- $configPath = Set-ProjectConfiguration - Project $project - InstallParentPath $InstallParentPath
778+ if (-not (YesNoPrompt - Title " $Project Configuration" - Description ' Would you like to configure the installation now?' )) {
779+ Write-Host " `n You can configure VeeamNotify later by editing the config file located at:`n $InstallParentPath \$project \config\conf.json"
780+ }
781+ else {
782+ Set-ProjectConfiguration - Project $project - InstallParentPath $InstallParentPath | Out-Null
783+ }
779784}
780785else {
781786 $configPath = Join-Path - Path $InstallParentPath - ChildPath $project | Join-Path - ChildPath ' config\conf.json'
You can’t perform that action at this time.
0 commit comments