packaging/installer #48
Replies: 7 comments 10 replies
|
Hello! |
|
Hello. Is there a way to install it globally for all users? |
|
Is it possible to add the install directory to the Windows path environment variable on install? My application is normally launched from the command line and It would be nice to have it available via command line immediately. |
|
Hello! |
|
Hello, vpk pack `
--packId ${{ env.APP_ID }} `
--packVersion "${{ steps.nbgv.outputs.SimpleVersion }}" `
--packDir ${{ env.PUBLISH_DIR }} `
--mainExe ${{ env.MAIN_EXE }} `
--packTitle "${{ env.APP_TITLE }}" `
--packAuthors "${{ env.APP_AUTHOR }}" `
--outputDir ${{ env.RELEASE_DIR }} `
--signParams "/sha1 <THUMBPRINT> /td sha256 /fd sha256" `
--delta "None" `
--shortcuts Startup,Desktop,StartMenuRoot `
--msi `
--msiVersion "${{ steps.nbgv.outputs.SimpleVersion }}.0" `
--instLocation PerMachineI get the following output: The desktop and StartMenuRoot shortcut are always created, but the startup shortcut is not. If I run the Setup.exe directly, the startup shortcut is also created. However, only for the executing user. |
|
Is it possible to forego shortcut creation entirely? My app is a Windows Service running Kestrel, to be accessed via a browser, so app shortcuts are undesirable. |
Uh oh!
There was an error while loading. Please reload this page.
packaging/installer
Velopack takes a relatively light-touch when it comes to installers, so there is not a lot of customisation available like you would find in other installation frameworks. This is the tradeoff Velopack makes to ensure that the developer/user experience is as fast and easy as possible.
https://docs.velopack.io/packaging/installer
All reactions