-
Notifications
You must be signed in to change notification settings - Fork 52
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
Failed to install .NET on Vista 32-bit #8
Comments
Is it an option to add the following lines to your base installer? |
yeah, it's an option but I prefer not to. Our application is installed in %APPDATA% and in most cases the .NET dependency is already available. So no admin privileges are necessary. But as I said, the solution we have works for us. Perhaps the DotNetChecker project would be interested in having StdUtils as an optional dependency for others like us who need user level installs on Vista? |
An alternative would be if Then applications with |
Hello,
At my work we use DotNetChecker to install .NET 4.0, usually on 64 bit Windows (7 and 8). However a client wanted to run it on Vista 32 bit and we tried and found that, while the .NET installer is downloaded, it doesn't even appear to start. This is with user level execution, not admin. I believe the .NET installer wants to get elevated permissions but the ExecWait call in the DotNetChecker script will fail in this case (correct me if I am wrong). One solution I found was using the StdUtils::ExecShellWaitEx macro like this. This works for me. However if there is some better way to solve this or if you want me to contribute this piece of code I would be glad to help.
The text was updated successfully, but these errors were encountered: