-
|
I see that this path is registered in PATH: What is the use of this? If all they do is to have binaries being shortcut to As a consequence, default pathing doesn't always work. See simonmichael/hledger#2458 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The links are created only for specific executables that are listed in the package manifest. The issue you reported for |
Beta Was this translation helpful? Give feedback.
%LocalAppData%\Microsoft\WinGet\Packageshas a separate folder for each (portable) package you install. This makes it easier to manage. For example, uninstalling a package is essentially deleting its folder, and it has no effect on any of the other packages. This isn't added to%Path%because you would have to add one entry for each package you install, which would make the%Path%variable grow very quickly if you install many apps.%LocalAppData%\Microsoft\WinGet\Linkshas shortcuts for all your installed packages, so you only need to have this one entry in your%Path%to use all of your packages.The links are created only for specific executables that are listed in the package manifest…