How to pass arguments to extracted EXE? #5164
-
How to pass arguments to extracted EXE? Or better said how to shim the specific exe with specific arguments and also create shortcut for it with arguments? I know "shortcut" and "bin" commands and all that, but how to properly pass args? For example i'd like to shim and 'shortcut' exe named "PCTray.exe", but it needs the argument / flag for it to work properly.. like Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Like this? (alacritty.json) "bin": [
"alacritty.exe",
[
"alacritty.exe",
"alacritty-config",
"--config-file \"$persist_dir\\alacritty.yml\""
]
],
"shortcuts": [
[
"alacritty.exe",
"Alacritty",
"--working-directory \"%USERPROFILE%\""
],
[
"alacritty.exe",
"Alacritty with Configuration",
"--config-file \"$persist_dir\\alacritty.yml\""
]
], "bin": [
"PCTray.exe",
[
"PCTray.exe",
"PCTray",
"/showui"
]
],
"shortcuts": [
[
"PCTray.exe",
"PCTray",
"/showui"
]
], |
Beta Was this translation helpful? Give feedback.
Like this? (alacritty.json)