Skip to content

Commit

Permalink
Merge pull request #208 from adrianriobo/fix-189
Browse files Browse the repository at this point in the history
Show Full User Experience When Running The Installer On Windows
  • Loading branch information
praveenkumar committed Apr 22, 2024
2 parents ef6facc + 1c3864a commit a2a650e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ async function initializeCrc(
telemetryLogger: extensionApi.TelemetryLogger,
logger: extensionApi.Logger,
): Promise<boolean> {
const hasSetupFinished = await setUpCrc(logger, false);
const hasSetupFinished = await setUpCrc(logger, true);
if (hasSetupFinished) {
await needSetup();
await connectToCrc();
Expand Down
2 changes: 1 addition & 1 deletion src/install/win-install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class WinInstall extends BaseInstaller {
msiPath = await this.extractMsiFromZip(setupPath);
progress.report({ increment: 10 });

const runResult = await runCliCommand('msiexec.exe', ['/i', msiPath, '/qr', '/norestart']);
const runResult = await runCliCommand('msiexec.exe', ['/i', msiPath, '/qf']);
if (runResult.exitCode !== 0) {
// installed successfully, but reboot required
if (runResult.exitCode === 3010) {
Expand Down

0 comments on commit a2a650e

Please sign in to comment.