diff --git a/engine/templates/windows/installer-beta.iss b/engine/templates/windows/installer-beta.iss index 56feecd6e..1127e1b97 100644 --- a/engine/templates/windows/installer-beta.iss +++ b/engine/templates/windows/installer-beta.iss @@ -50,7 +50,7 @@ begin // Download llamacpp engine by default CortexInstallCmd := Format('"%s\cortex-beta.exe" engines install cortex.llamacpp', [ExpandedAppDir]); - Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_HIDE, ewWaitUntilTerminated, ResultCode); + Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_SHOW, ewWaitUntilTerminated, ResultCode); // Clear the status message after completion WizardForm.StatusLabel.Caption := ''; diff --git a/engine/templates/windows/installer-nightly.iss b/engine/templates/windows/installer-nightly.iss index 9e5ce68d0..38d8a5903 100644 --- a/engine/templates/windows/installer-nightly.iss +++ b/engine/templates/windows/installer-nightly.iss @@ -50,7 +50,7 @@ begin // Download llamacpp engine by default CortexInstallCmd := Format('"%s\cortex-nightly.exe" engines install cortex.llamacpp', [ExpandedAppDir]); - Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_HIDE, ewWaitUntilTerminated, ResultCode); + Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_SHOW, ewWaitUntilTerminated, ResultCode); // Clear the status message after completion WizardForm.StatusLabel.Caption := ''; diff --git a/engine/templates/windows/installer.iss b/engine/templates/windows/installer.iss index 32a0dfe09..a9e4e10ca 100644 --- a/engine/templates/windows/installer.iss +++ b/engine/templates/windows/installer.iss @@ -50,7 +50,7 @@ begin // Download llamacpp engine by default CortexInstallCmd := Format('"%s\cortex.exe" engines install cortex.llamacpp', [ExpandedAppDir]); - Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_HIDE, ewWaitUntilTerminated, ResultCode); + Exec('cmd.exe', '/C ' + CortexInstallCmd, '', SW_SHOW, ewWaitUntilTerminated, ResultCode); // Clear the status message after completion WizardForm.StatusLabel.Caption := '';