Skip to content
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

vstor_redist.exe not download #11

Open
yythoss opened this issue Jan 7, 2021 · 5 comments
Open

vstor_redist.exe not download #11

yythoss opened this issue Jan 7, 2021 · 5 comments

Comments

@yythoss
Copy link

yythoss commented Jan 7, 2021

I just installed a fresh Windows 10 32Bit and started my setup. However, vstor_redist.exe was not downloaded.
What could that be?

@bovender
Copy link
Owner

bovender commented Jan 7, 2021

Do you get to see any error messages? What's in the install log?

The hard-coded URL (in defines.iss) for the VSTOR redistributable still works for me when I point my browser to it:

http://download.microsoft.com/download/7/A/F/7AFA5695-2B52-44AA-9A2D-FC431C231EDC/vstor_redist.exe

Are you able to access this URL?

@yythoss
Copy link
Author

yythoss commented Jan 7, 2021

Yes this hard-coded link works. But the Logfile show VSTO not needed:

2021-01-07 13:02:07.182 NeedToInstallVstor: Minimum required VSTOR 2010 build: 40305
2021-01-07 13:02:07.182 NeedToInstallVstor: No need to install VSTO runtime

@yythoss
Copy link
Author

yythoss commented Jan 7, 2021

I see this function:

}
function NeedToInstallVstor(): boolean;
begin
Log('NeedToInstallVstor: Minimum required VSTOR 2010 build: ' + IntToStr(MIN_VSTOR_BUILD));
result := false; { Default }
if IsOffice2007Installed or IsOffice2010Installed then
result := (GetVstorBuild < MIN_VSTOR_BUILD) and not IsUpdate;
if result then
Log('NeedToInstallVstor: Need to install VSTO runtime')
else
Log('NeedToInstallVstor: No need to install VSTO runtime');
end;

On the Windows 10 Computer is Office 2013 installed, but not vstor_redist.exe.
So the addin not work.

@yythoss
Copy link
Author

yythoss commented Jan 7, 2021

PrerequisitesAreMet return also true, so never check the rest.

@yythoss
Copy link
Author

yythoss commented Jan 7, 2021

Now I change the Script and the download work, but no install Page come up.
Do you tested your Software today on a Windows Maschine?

CreateInstallInfoPage was called but not show.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants