-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
win,msi: install Boxstarter from elevated shell #22988
Conversation
Boxstarter asks for elevation to install packages, but not to install Boxstarter itself. Thus, run all the commands from an elevated PowerShell. Refs: nodejs#22645
Test build so we can try it: https://ci-release.nodejs.org/job/iojs+release/3775/ |
I tested it and it works, nice! |
This does not permamently install Boxstart itself, just the required packages, right? |
It permanently installs the Boxstarter shell |
Is that visible to the user prior to the installation? The MSI dialog window does not seem to say so. |
@tniessen there's a mention of Boxstarter in the shell text before installation. This installs Chocolatey and Boxstarter as system tools (which are a good thing to have I believe). The most visible part is the Boxstarter Shell that appears in the desktop. Do you think that's an issue? I could add a hackish workaround for that, but I'd rather not unless it proves to be a problem. There are links for manual steps for people that want more control over the installation. |
Currently, the installation wizard more or less silently installs third-party software (Boxstarter + Chocolatey). This adds some text to the MSI installation dialog and to the Boxstarter installation script. Refs: nodejs#22645 Refs: nodejs#22988
I agree, but it should be obvious to the user that that is going to happen, and I don't think it currently is. I opened #23003 to deal with that. This discussion is unrelated to this PR though, the change itself LGTM. |
@tniessen @joaocgreis Is this ready for landing? It seems that way but I’m super unfamiliar with the subject matter so I don’t feel comfortable pushing the button just yet. :) |
I'd think so, but I cannot actually test the installer right now, would be great if someone else from @nodejs/platform-windows could confirm. |
Currently, the installation wizard more or less silently installs third-party software (Boxstarter + Chocolatey). This adds some text to the MSI installation dialog and to the Boxstarter installation script. PR-URL: #23003 Refs: #22645 Refs: #22988 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
This is ready to land. Both @targos and I tested this, I tested on Windows 7, 2012R2 and 10. It is possible (or even likely) that some program out there or some configuration will make the installation fail, so more testing would always be welcome. (I believe that using Chocolatey/Boxstarter is both the simplest way and the one that will cause less issues, but installing these tools is hard.) I will land this tomorrow if no one gets to it first or finds any issue. |
Currently, the installation wizard more or less silently installs third-party software (Boxstarter + Chocolatey). This adds some text to the MSI installation dialog and to the Boxstarter installation script. PR-URL: #23003 Refs: #22645 Refs: #22988 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
This fixes the issue described in #22645 (comment) (cc @targos).
Boxstarter asks for elevation to install packages, but not to install Boxstarter itself. If Boxstarter is already installed, the command succeeds with or without elevation. This PR changes the batch file to run all the commands from an elevated PowerShell.
LTS and semver: This is a bug fix for #22645, which is currently only in master. That PR is
semver-minor
without a strong case for backporting, so this one should not be backported as well even if this issemver-patch
.cc @nodejs/platform-windows @richardlau
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes