-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppTray.example.ini
32 lines (30 loc) · 995 Bytes
/
AppTray.example.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;[App Name]
; CmdLine: command line (with args) to run.
; Can be full path or relative path to AppTray's directory.
;CmdLine=full\or\relative\path\filename.ext args
; Console: 1|0 (Optional) [default: 1]
; Run in console (cmd.exe /c CmdLine).
;Console=1
; WorkDir: (Optional) [default: AppTray's directory]
; Working directory for CmdLine.
; Can be full path or relative path to AppTray's directory.
;WorkDir=work\dir\
; AutoRun: 1|0 (Optional) [default: 1]
; Run CmdLine automatically.
;AutoRun=1
; HideWin: 1|0|-1 (Optional) [default: 1]
; Hide the window.
; 0: Show (Start the program normally)
; 1: Hide (Start the program normally, then hide the window)
; -1: Hide immediately (Start the program in hidden mode)
;HideWin=1
[Hello World]
CmdLine=@ECHO Hello, World!&ECHO.&ECHO Click trayicon to show menu.&ECHO.&PAUSE
Console=1
AutoRun=1
HideWin=0
[Notepad]
CmdLine=Notepad.exe
Console=0
AutoRun=1
HideWin=1