Replies: 1 comment
-
WinGet simply invokes the installer with silent (and/or additional arguments specified in the manifest), and then it's up to the installer to install wherever it wants. Unless the installer supports a CLI switch to change install location (which can then be specified in the manifest to support |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any policy/convention/style guidance for the directories which winget packages install into?
E.g. The installer for one program that I'm looking at writing a manifest for installs into
C:\Program Files\fooproduct 123.4
by default. So the version is incorporated into the path.Should I just leave the path as-is, per the upstream vanilla installer? Should I remove the version number (
C:\Program Files\fooproduct
)? Should I make the version portion number a subdirectory (C:\Program Files\fooproduct\123.4
)? Or something else?Beta Was this translation helpful? Give feedback.
All reactions