mirror of
https://github.com/clechasseur/pathcopycopy.git
synced 2026-04-25 12:15:58 +03:00
[GH-ISSUE #143] [FEATURE] Silent install flag for choosing "Common commands and commands for network environments" #141
Labels
No labels
bug
duplicate
enhancement
enhancement
enhancement
fixed
help wanted
help wanted
invalid
pull-request
question
waiting for input
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/pathcopycopy#141
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @PeetMcK on GitHub (Apr 23, 2021).
Original GitHub issue: https://github.com/clechasseur/pathcopycopy/issues/143
Is your feature request related to a problem? Please describe.
I'm trying to deploy Path Copy Copy Silently "installer.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-" works well, but I'd very much like to include the default settings for "Common commands and commands for network environments" that are available in the UI in the installer.
Describe the solution you'd like
Just a flag that allows for "/SETTIGNS-COMMANDNET" or whatever works for your Inno installer.
Describe alternatives you've considered
I'm currently working on injecting the following before installing:
Additional context
While, not the end of the world, to do the reg-edit before install, it would be great to not have to. Perhaps there's already a way to do this that hasn't made it's way into the yet to be written "Wiki-Installing-Advanced"?
@clechasseur commented on GitHub (Apr 23, 2021):
This already exists, pass
/INITIALCOMMANDSCHOICE=1to the installer when calling it silently. (0 is common commands, 1 adds network commands and 2 is all commands)@PeetMcK commented on GitHub (Apr 23, 2021):
Hand to god, I did my best to find the flag! Sorry to bug you on this one. Now I know to look at the
[Setup.iss](https://github.com/clechasseur/pathcopycopy/blob/default/Installer/Setup.iss)file to check for any changes on that one. I truly appreciate the response.Though I'm glad to have worked out an install script to pre-stage a slightly different set of settings for the app. I'm pumped to see how to do this. Thanks for all your work.