-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
UAC prompt when installing application #271
Comments
In Windows, the closest thing to 'sudo' is Runas: https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771525(v=ws.11) But the only problem is that the command input is larger compared to just 'sudo winget install package', using runas you would have to do: 'runas /user:\administrator winget install package' (haven't tested that yet) |
Could winget elevate itself and then install the packages? |
You can run the winget command from an elevated command prompt and won't see any UAC prompts when installing packages. |
start the command prompt elevated using:
|
Yeah, you're right we can open the terminal |
This can do the work if implemented with windows 10 and winget. Never thought MSFT already had something similar to |
For some reason I am getting UAC prompts despite doing this. Any ideas? Edit: Nevermind, fixed it. Some weird issue with SmartScreen. |
Opening a separate elevated prompt not only breaks the user workflow, but also introduces other follow-up steps, too. The user potentially needs to refresh the environment in the other terminal instance, or even destroy it and start over, depending on the updates made. |
I'm having the same issue, how did you fix it? |
iirc all I did was change the local group policy via gpedit.msc: Either enable and set to warn, or disable. |
I solved it for myself through winget itself using
When it is run from a normal (non admin) user, it will only ask for privileges escalation once (similar to how a normal |
gsudo is amazing, it even comes with an sudo alias so you can do |
I've been going through the backlog checking on older issues. This one seems to be resolved with the release of sudo on Windows. |
It's ugly when you install a package using the command line and after that, a window prompt appears for a mouse click. Instead of this, something like
sudo
which ask for password before downloading the package will be beautiful and look consistent.Yeah, you're right we can open the terminal
as an administrator
but when you working only on CLI it breaks the flow. It doesn't feel nice that you opened another terminal window just for installing a program.The text was updated successfully, but these errors were encountered: