-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneard.ini
2212 lines (1914 loc) · 203 KB
/
neard.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Config]
ImageList=sprites.dat
ServiceCheckInterval=1
TrayIconAllRunning=16
TrayIconSomeRunning=17
TrayIconNoneRunning=18
ID={neard}
AboutHeader=Neard
AboutVersion=Version 1.4
[Services]
Name: neardapache
[Messages]
AllRunningHint=All services running
SomeRunningHint=%n of %t services running
NoneRunningHint=None of %t services running
[StartupAction]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php startup"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php checkVersion"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php exec"; WorkingDir: "%AeTrayMenuPath%core"
[Menu.Right.Settings]
BarVisible=no
SeparatorsAlignment=center
SeparatorsFade=yes
SeparatorsFadeColor=clBtnShadow
SeparatorsFlatLines=yes
SeparatorsGradientEnd=clSilver
SeparatorsGradientStart=clGray
SeparatorsGradientStyle=horizontal
SeparatorsSeparatorStyle=shortline
[Menu.Left.Settings]
AutoLineReduction=no
BarVisible=yes
BarCaptionAlignment=bottom
BarCaptionCaption=Neard 1.4
BarCaptionDepth=1
BarCaptionDirection=downtoup
BarCaptionFont=Tahoma,14,clWhite
BarCaptionHighlightColor=clNone
BarCaptionOffsetY=0
BarCaptionShadowColor=clNone
BarPictureHorzAlignment=center
BarPictureOffsetX=0
BarPictureOffsetY=0
BarPicturePicture=bar.dat
BarPictureTransparent=yes
BarPictureVertAlignment=bottom
BarBorder=clNone
BarGradientEnd=$00984E00
BarGradientStart=$00984E00
BarGradientStyle=horizontal
BarSide=left
BarSpace=0
BarWidth=32
SeparatorsAlignment=center
SeparatorsFade=yes
SeparatorsFadeColor=clBtnShadow
SeparatorsFlatLines=yes
SeparatorsFont=Arial,8,clWhite,bold
SeparatorsGradientEnd=$00FFAA55
SeparatorsGradientStart=$00550000
SeparatorsGradientStyle=horizontal
SeparatorsSeparatorStyle=caption
[Menu.Right]
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php about"; WorkingDir: "%AeTrayMenuPath%core"; Caption: "About..."; Glyph: "21"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php checkVersion ZGlzcGxheU9r"; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Check for update"; Glyph: "33"
Type: item; Caption: "Help"; Action: run; FileName: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"; Parameters: "http://neard.io/doc/?utm_source=neard-1.4"; Glyph: 30
Type: separator
Type: item; Action: multi; Actions: ActionReload; Caption: "Reload"; Glyph: "12"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php clearFolders"; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Clear temp folders"; Glyph: "32"
Type: item; Action: multi; Actions: ActionChangeBrowser; Caption: "Change browser"; Glyph: "5"
Type: separator
Type: submenu; Caption: "Language"; SubMenu: MenuLang; Glyph: 3
Type: submenu; Caption: "Logs verbose"; SubMenu: MenuLogsVerbose; Glyph: 3
Type: item; Action: multi; Actions: ActionLaunchStartup-d4745e82aecb406b29b31e88c9ff0e4a; Caption: "Launch on Windows startup"
Type: separator
Type: item; Action: multi; Actions: ActionExit; Caption: "Exit"; Glyph: "20"
[ActionReload]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionChangeBrowser]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php changeBrowser"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[MenuLang]
Type: item; Action: multi; Actions: ActionSwitchLang-292f881fc1ce1f3b8c7743eeb8a7c4e3; Caption: "English"; Glyph: "13"
[ActionSwitchLang-292f881fc1ce1f3b8c7743eeb8a7c4e3]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchLang ZW5nbGlzaA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[MenuLogsVerbose]
Type: item; Action: multi; Actions: ActionSwitchLogsVerbose-087886d6bcd311a92de967591304e9d8; Caption: "Simple"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchLogsVerbose-d4745e82aecb406b29b31e88c9ff0e4a; Caption: "Report"
Type: item; Action: multi; Actions: ActionSwitchLogsVerbose-a5f5d7a5fc80600513c623db108873af; Caption: "Debug"
Type: item; Action: multi; Actions: ActionSwitchLogsVerbose-84876a92125bf5a9eac9aeec5f7615f8; Caption: "Trace"
[ActionSwitchLogsVerbose-087886d6bcd311a92de967591304e9d8]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchLogsVerbose MA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchLogsVerbose-d4745e82aecb406b29b31e88c9ff0e4a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchLogsVerbose MQ=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchLogsVerbose-a5f5d7a5fc80600513c623db108873af]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchLogsVerbose Mg=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchLogsVerbose-84876a92125bf5a9eac9aeec5f7615f8]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchLogsVerbose Mw=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionLaunchStartup-d4745e82aecb406b29b31e88c9ff0e4a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php launchStartup MQ=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionExit]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php quit"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: exit
[Menu.Left]
Type: item; Caption: "Localhost"; Action: run; FileName: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"; Parameters: "http://localhost"; Glyph: 30
Type: item; Caption: "Localhost (SSL)"; Action: run; FileName: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"; Parameters: "https://localhost"; Glyph: 30
Type: item; Caption: "www directory"; Action: shellexecute; FileName: "C:/Ajaro/Andekata/www"; Glyph: 2
Type: separator
Type: submenu; Caption: "Ajaro Andekata"; SubMenu: MenuAjaroAndekata; Glyph: 3
Type: separator
Type: submenu; Caption: "Node.js"; SubMenu: MenuNodejs; Glyph: 3
Type: submenu; Caption: "Apache"; SubMenu: MenuApache; Glyph: 3
Type: submenu; Caption: "PHP"; SubMenu: MenuPhp; Glyph: 3
Type: submenu; Caption: "MySQL"; SubMenu: MenuMysql; Glyph: 48
Type: submenu; Caption: "MariaDB"; SubMenu: MenuMariadb; Glyph: 48
Type: submenu; Caption: "PostgreSQL"; SubMenu: MenuPostgresql; Glyph: 48
Type: separator
Type: submenu; Caption: "Logs"; SubMenu: MenuLogs; Glyph: 3
Type: submenu; Caption: "Tools"; SubMenu: MenuTools; Glyph: 3
Type: submenu; Caption: "Applications"; SubMenu: MenuApps; Glyph: 3
Type: separator
Type: item; Action: multi; Actions: ActionStartServices; Caption: "Start all services"; Glyph: "24"
Type: item; Action: multi; Actions: ActionStopServices; Caption: "Stop all services"; Glyph: "23"
Type: item; Action: multi; Actions: ActionRestartServices; Caption: "Restart all services"; Glyph: "22"
Type: separator
Type: item; Action: multi; Actions: ActionStatus-d4745e82aecb406b29b31e88c9ff0e4a; Caption: "Put Online"
[MenuNodejs]
Type: item; Caption: "Download more..."; Action: run; FileName: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"; Parameters: "http://neard.io/modules/nodejs/?utm_source=neard-1.4#releases"; Glyph: 5
Type: item; Action: multi; Actions: ActionEnableNodejs-087886d6bcd311a92de967591304e9d8; Caption: "Enable / Disable"; Glyph: "13"
Type: separator
Type: submenu; Caption: "Versions"; SubMenu: MenuNodejsVersions; Glyph: 3
Type: item; Caption: "Console"; Action: run; FileName: "C:/Ajaro/Andekata/tools/console/console2.00.148.4/Console.exe"; Parameters: " -t ""Node.js 8.9.3"""; Glyph: 0
Type: item; Caption: "npmrc"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/bin/nodejs/nodejs8.9.3/node_modules/npm/npmrc"; Glyph: 6
[ActionEnableNodejs-087886d6bcd311a92de967591304e9d8]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php enable Tm9kZS5qcw== MA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[MenuNodejsVersions]
Type: item; Action: multi; Actions: ActionSwitchNodejsVersion-0be356cae6927e4d1e047dd316f0daf2; Caption: "8.9.3"; Glyph: "13"
[ActionSwitchNodejsVersion-0be356cae6927e4d1e047dd316f0daf2]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchVersion Tm9kZS5qcw== OC45LjM="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php exec"; WorkingDir: "%AeTrayMenuPath%core"
[MenuAjaroAndekata]
Type: item; Caption: "Andekata Client Setup"; Action: shellexecute; FileName: "C:/Ajaro/Andekata/andekata-scripts/andekata-client-setup.bat"; Glyph: 0; WorkingDir: "C:/Ajaro/Andekata/apps"; ShowCmd: normal;
Type: item; Caption: "Andekata Client Update"; Action: shellexecute; FileName: "C:/Ajaro/Andekata/andekata-scripts/andekata-client-update.bat"; Glyph: 0; WorkingDir: "C:/Ajaro/Andekata/apps"; ShowCmd: normal;
Type: separator
Type: item; Caption: "Andekata API Setup"; Action: shellexecute; FileName: "C:/Ajaro/Andekata/andekata-scripts/andekata-api-setup.bat"; Glyph: 0; WorkingDir: "C:/Ajaro/Andekata/apps"; ShowCmd: normal;
Type: item; Caption: "Andekata API Update"; Action: shellexecute; FileName: "C:/Ajaro/Andekata/andekata-scripts/andekata-api-update.bat"; Glyph: 0; WorkingDir: "C:/Ajaro/Andekata/apps"; ShowCmd: normal;
[MenuApache]
Type: item; Caption: "Download more..."; Action: run; FileName: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"; Parameters: "http://neard.io/modules/apache/?utm_source=neard-1.4#releases"; Glyph: 5
Type: item; Action: multi; Actions: ActionEnableApache-087886d6bcd311a92de967591304e9d8; Caption: "Enable / Disable"; Glyph: "13"
Type: separator
Type: submenu; Caption: "Versions"; SubMenu: MenuApacheVersions; Glyph: 3
Type: submenu; Caption: "Service"; SubMenu: MenuApacheService; Glyph: 3
Type: submenu; Caption: "Debug"; SubMenu: MenuApacheDebug; Glyph: 3
Type: submenu; Caption: "Modules"; SubMenu: MenuApacheModules; Glyph: 3
Type: submenu; Caption: "Aliases"; SubMenu: MenuApacheAlias; Glyph: 3
Type: submenu; Caption: "Virtual Hosts"; SubMenu: MenuApacheVhosts; Glyph: 3
Type: item; Caption: "httpd.conf"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/bin/apache/apache2.4.29/conf/httpd.conf"; Glyph: 6
Type: item; Caption: "Access logs"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/logs/apache_access.log"; Glyph: 6
Type: item; Caption: "Rewrite logs"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/logs/apache_rewrite.log"; Glyph: 6
Type: item; Caption: "Error logs"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/logs/apache_error.log"; Glyph: 6
[ActionEnableApache-087886d6bcd311a92de967591304e9d8]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php enable QXBhY2hl MA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[MenuApacheVersions]
Type: item; Action: multi; Actions: ActionSwitchApacheVersion-686402875305a37da8c90c04aea03937; Caption: "2.4.29"; Glyph: "13"
[ActionSwitchApacheVersion-686402875305a37da8c90c04aea03937]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchVersion QXBhY2hl Mi40LjI5"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php exec"; WorkingDir: "%AeTrayMenuPath%core"
[MenuApacheService]
Type: item; Action: service; Service: neardapache; ServiceAction: stop; Caption: "Stop service"; Glyph: 11
Type: item; Action: service; Service: neardapache; ServiceAction: startresume; Caption: "Start service"; Glyph: 9
Type: item; Action: service; Service: neardapache; ServiceAction: restart; Caption: "Restart service"; Glyph: 12
Type: separator
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php checkPort QXBhY2hl ODA="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Check port 80"; Glyph: "25"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php checkPort QXBhY2hl NDQz MQ=="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Check port 443 (SSL)"; Glyph: "36"
Type: item; Action: multi; Actions: ActionChangeApachePort; Caption: "Change port"; Glyph: "29"
Type: item; Caption: "Update env. PATH"; Action: run; FileName: "notepad.exe"; Parameters: "C:/Ajaro/Andekata/nssmEnvPaths.dat"; Glyph: 6
Type: item; Action: multi; Actions: ActionRemoveApacheService; Caption: "Remove Service"; Glyph: "7"
[ActionRemoveApacheService]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVtb3Zl"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionChangeApachePort]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php changePort QXBhY2hl"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[MenuApacheDebug]
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LXY="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Version number"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LVY="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Compile settings"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LWw="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Compiled modules"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LUw="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Config directives"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LVM="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Virtual hosts settings"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LU0="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Loaded modules"; Glyph: "31"
Type: item; Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php debugApache LXQ="; WorkingDir: "%AeTrayMenuPath%core"; Caption: "Config syntax check"; Glyph: "31"
[MenuApacheModules]
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b8d4a829354a707b366b915ace5663a9; Caption: "access_compat_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-8efc6b01c2f23ad14fd56b68586ecd23; Caption: "actions_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ae12863ff05b46f2db4107011b2fa2a6; Caption: "alias_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b9ceca21f9ef0f4e2b49138fdb2783d2; Caption: "allowmethods_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b4e40132138e64bc3aa79d8e2b3e0843; Caption: "asis_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-95bab25419aaa054cc7e382b55625352; Caption: "auth_basic_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7b965bafbec298c279408f5c3586238c; Caption: "auth_digest_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-90c03201372331f27a9b9532129066f0; Caption: "auth_form_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-53c964725cb7ba59b8d5c4fd5cb4da4e; Caption: "authn_anon_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d5be97c6da0e3b78d91b0883c0918d1c; Caption: "authn_core_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b23725f31aa7c2fdcb690f5fc1290386; Caption: "authn_dbd_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-e0a3f351b8c6250ed869034b88eb20c9; Caption: "authn_dbm_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-84b7eb62ae494d6f62734b08b24a10cc; Caption: "authn_file_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7e77882269fcecb494b26e6f86197bd7; Caption: "authn_socache_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-5042793e2df3133877cf1c388987d6b4; Caption: "authnz_fcgi_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-105486c2ef8b1682e19235ecd9b957f9; Caption: "authnz_ldap_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-fee16e07499a7eef585d43e865808159; Caption: "authz_core_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-89f55e1cf4f9ddc7e083e542ed8dec9a; Caption: "authz_dbd_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f19fae42505609c152271afb68ebd721; Caption: "authz_dbm_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-4bbe397ca8497604ce8922f00acdecee; Caption: "authz_groupfile_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7ccfca034b51dd03a1af78ea81401fbb; Caption: "authz_host_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-adf4bc09aa1c19e33b3099bc9f7a1cc5; Caption: "authz_owner_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b4fb8a6a7a30c85254f44bf3fc749333; Caption: "authz_user_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-bed332878e0b91dc2cee5f34d8255969; Caption: "autoindex_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-73f76d828abebe830ce86b03f8f8ea5f; Caption: "buffer_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-60dd4cdb6d67bbb2fc461feb7e79566d; Caption: "cache_disk_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-297688b27d07aa83caecb4f8e0a5639e; Caption: "cache_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-c2eaa80f30b357329ada1668395a704d; Caption: "cache_socache_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-503b6c8a88d66866cc3a2b590c850ef4; Caption: "cern_meta_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f6af2d5f99de0cfbc60ab4c875a5c425; Caption: "cgi_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-97862f9ff34a93b7afbedbd7ef1f1ce8; Caption: "charset_lite_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-42701b6c739502da90d15f687f3a2bd4; Caption: "data_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-c4d6ddcf1d15c7f10105656943631df6; Caption: "dav_fs_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-9bf5334ad84af929de44266b0575ea74; Caption: "dav_lock_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-feff04df8fcc40088e71945fd46fd8f5; Caption: "dav_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-5c6784318075b398cf0e9660c7172c1c; Caption: "dbd_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-0b1ac9928f7b6bc4874f4e1f4638a625; Caption: "deflate_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-2ed305868482e82467b83850d0eb5fe5; Caption: "dir_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-237e3165bcedca5ca8ad154a4cf6140c; Caption: "dumpio_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-853d04da7e9459781a2c406b900a7b71; Caption: "env_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-33d3e57e5047191d00d2e1488ff9baab; Caption: "expires_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f448acba4cf6dcc39d49e8f7b1b41b5c; Caption: "ext_filter_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d7c6004ca989da7bd050a7494a6ad4b0; Caption: "fcgid_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-4f6b842173656035e7223a9e8f660726; Caption: "file_cache_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-917ae8e3201ed02e9bfa338ac03ba35a; Caption: "filter_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b1a88e5de50ba0129f9dc91b1d9826e6; Caption: "headers_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-6f2ad9718cdc19829064585d8e24e270; Caption: "heartbeat_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-3b831e5d1bb1e3bd91517be0c91ba203; Caption: "heartmonitor_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-1755715d4c7280a4de1892150ae23b57; Caption: "http2_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-e3d6d47dbb598374bebe8c3319f6ec6a; Caption: "ident_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-277ad706578e67acb3e8eef78e88a72a; Caption: "imagemap_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d7d8372c6634d12affafe775109e6bea; Caption: "include_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ad49f72fbe2a876e1648f1fc959dc28e; Caption: "info_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-547b1779904bdbcd9f84a4bfe6d9547f; Caption: "isapi_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-5c7fa07950651edb0c2b484d96a9e540; Caption: "lbmethod_bybusyness_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-5e5e914a468103c9e37c6ee7303d8229; Caption: "lbmethod_byrequests_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-e4cb7fced6a303561ed7f2468b11825f; Caption: "lbmethod_bytraffic_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7bb3c77935ed3e6f9ed6e1400e26dcae; Caption: "lbmethod_heartbeat_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-98d188d4e0fefe86a9e3bf76b3176e9c; Caption: "ldap_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-715dfbfb3bb16e9674176e4871c466b1; Caption: "log_config_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-b72c25926da351e751abf3fadb6e2968; Caption: "log_debug_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f3dbf7d9c80f3e62e240b7dafac0683c; Caption: "log_forensic_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-422426ecbe2af6780ffaf4365dbe5683; Caption: "logio_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f7b676b1e4140d330d3a9bd5dc408d7c; Caption: "lua_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-24fb5820424086ce73ab5864037f2b6b; Caption: "macro_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ffb42528ea9a086f364af8e8d4701e24; Caption: "mime_magic_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ad49736679127c7cfea4025a48c15415; Caption: "mime_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-07f573f096564fab92737479feaaec3c; Caption: "negotiation_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-587952ef0a0e521d94faf04e9276e52c; Caption: "proxy_ajp_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-3fc6e2c162cbf6919fe2b24312ba264e; Caption: "proxy_balancer_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-33b0e5d43a04a00e24c83dad055aa75a; Caption: "proxy_connect_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f74a3ec976c33e39d1bba20efcc900de; Caption: "proxy_express_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7e7cfeffcecc6f724319981d8a43881f; Caption: "proxy_fcgi_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-481aa60de8a66d958a59cf3f7b63ec82; Caption: "proxy_ftp_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-56f5d664b6f6384aea966c9f755a61e9; Caption: "proxy_html_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-669f8b55562c5d10e2636c7c91e3b709; Caption: "proxy_http2_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-46ba119437ff8b04a93023ecbd6577d0; Caption: "proxy_http_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-98510f545e466e9014bf7f9f3af2ca9a; Caption: "proxy_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-391c5f15571abf2150878d1f23beccb0; Caption: "proxy_scgi_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-6580b7c612daf2ff122b6e7ced2586e0; Caption: "proxy_wstunnel_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-7c020a620a5aabfcf003da6e3160c117; Caption: "ratelimit_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d410c0e8a463f8630b857cc74a786f0a; Caption: "reflector_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ad80f7fce4f55223a4c14e3e3024e951; Caption: "remoteip_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-f488a4e843ea0df0fa27b35e65fad561; Caption: "reqtimeout_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-c4490efb96eb1c220fce3dfc0c4ac899; Caption: "request_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-ea3f90e3dd80ab7e374aa234c1dfd0f0; Caption: "rewrite_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-fb7cbe2b51622c8b6d1c160a9ef9846d; Caption: "sed_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-c94025f7c5f72741a0f625aa33419499; Caption: "session_cookie_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-3dc1b2b8019277fe5b962db985ecd211; Caption: "session_crypto_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-4d15a6c4f1bf7d6a9f46dc5f3703cf72; Caption: "session_dbd_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-6eaf2166e4b274b4e45acf8850b10a42; Caption: "session_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-4323b506dbc70318eadef3aead3c2af7; Caption: "setenvif_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-737238767b5acc6cc75d2e3fdc111c66; Caption: "slotmem_plain_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d0e4cc13aa27f6e8393e12d246fab738; Caption: "slotmem_shm_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-4082c2027ee497fe8929e8098c8992d4; Caption: "socache_dbm_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-0d720340dfac373b745e94a15713873e; Caption: "socache_memcache_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-91180e5a0b95d6622ce2389c4e078bca; Caption: "socache_shmcb_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-6f9905d7029ed5646d29d9ccc730094c; Caption: "speling_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-600ac40436e1f7a371d9b29c171219a5; Caption: "ssl_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-cf145a2610a6723ab3b93b4dda5a03cd; Caption: "status_module"; Glyph: "13"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-096f55753d8280f2d36fa7a8c1fa43fb; Caption: "substitute_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-3286eea4c8e328865d4b51646d205bf0; Caption: "unique_id_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-95206b3cec6692e5754561b9862d43f5; Caption: "userdir_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-8d098504a522fb93ac8775d45f83b8aa; Caption: "usertrack_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-0fcec8b645b1319c76225e0544709c26; Caption: "version_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-6b5ac70207564770d47224f676ee4cc5; Caption: "vhost_alias_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-e4bc712d9f232177cc4e8eb0fd21f88a; Caption: "watchdog_module"
Type: item; Action: multi; Actions: ActionSwitchApacheModule-d193401592a8d9b71db7820e652b0df8; Caption: "xml2enc_module"
[ActionSwitchApacheModule-b8d4a829354a707b366b915ace5663a9]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YWNjZXNzX2NvbXBhdF9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-8efc6b01c2f23ad14fd56b68586ecd23]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YWN0aW9uc19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ae12863ff05b46f2db4107011b2fa2a6]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YWxpYXNfbW9kdWxl b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b9ceca21f9ef0f4e2b49138fdb2783d2]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YWxsb3dtZXRob2RzX21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b4e40132138e64bc3aa79d8e2b3e0843]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXNpc19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-95bab25419aaa054cc7e382b55625352]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aF9iYXNpY19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7b965bafbec298c279408f5c3586238c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aF9kaWdlc3RfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-90c03201372331f27a9b9532129066f0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aF9mb3JtX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-53c964725cb7ba59b8d5c4fd5cb4da4e]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fYW5vbl9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-d5be97c6da0e3b78d91b0883c0918d1c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fY29yZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b23725f31aa7c2fdcb690f5fc1290386]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fZGJkX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-e0a3f351b8c6250ed869034b88eb20c9]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fZGJtX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-84b7eb62ae494d6f62734b08b24a10cc]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fZmlsZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7e77882269fcecb494b26e6f86197bd7]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG5fc29jYWNoZV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-5042793e2df3133877cf1c388987d6b4]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG56X2ZjZ2lfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-105486c2ef8b1682e19235ecd9b957f9]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aG56X2xkYXBfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-fee16e07499a7eef585d43e865808159]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfY29yZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-89f55e1cf4f9ddc7e083e542ed8dec9a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfZGJkX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f19fae42505609c152271afb68ebd721]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfZGJtX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-4bbe397ca8497604ce8922f00acdecee]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfZ3JvdXBmaWxlX21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7ccfca034b51dd03a1af78ea81401fbb]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfaG9zdF9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-adf4bc09aa1c19e33b3099bc9f7a1cc5]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfb3duZXJfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b4fb8a6a7a30c85254f44bf3fc749333]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0aHpfdXNlcl9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-bed332878e0b91dc2cee5f34d8255969]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YXV0b2luZGV4X21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-73f76d828abebe830ce86b03f8f8ea5f]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule YnVmZmVyX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-60dd4cdb6d67bbb2fc461feb7e79566d]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2FjaGVfZGlza19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-297688b27d07aa83caecb4f8e0a5639e]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2FjaGVfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-c2eaa80f30b357329ada1668395a704d]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2FjaGVfc29jYWNoZV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-503b6c8a88d66866cc3a2b590c850ef4]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2Vybl9tZXRhX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f6af2d5f99de0cfbc60ab4c875a5c425]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2dpX21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-97862f9ff34a93b7afbedbd7ef1f1ce8]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule Y2hhcnNldF9saXRlX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-42701b6c739502da90d15f687f3a2bd4]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGF0YV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-c4d6ddcf1d15c7f10105656943631df6]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGF2X2ZzX21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-9bf5334ad84af929de44266b0575ea74]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGF2X2xvY2tfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-feff04df8fcc40088e71945fd46fd8f5]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGF2X21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-5c6784318075b398cf0e9660c7172c1c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGJkX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-0b1ac9928f7b6bc4874f4e1f4638a625]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGVmbGF0ZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-2ed305868482e82467b83850d0eb5fe5]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZGlyX21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-237e3165bcedca5ca8ad154a4cf6140c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZHVtcGlvX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-853d04da7e9459781a2c406b900a7b71]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZW52X21vZHVsZQ== b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-33d3e57e5047191d00d2e1488ff9baab]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZXhwaXJlc19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f448acba4cf6dcc39d49e8f7b1b41b5c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZXh0X2ZpbHRlcl9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-d7c6004ca989da7bd050a7494a6ad4b0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZmNnaWRfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-4f6b842173656035e7223a9e8f660726]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZmlsZV9jYWNoZV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-917ae8e3201ed02e9bfa338ac03ba35a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule ZmlsdGVyX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b1a88e5de50ba0129f9dc91b1d9826e6]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aGVhZGVyc19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-6f2ad9718cdc19829064585d8e24e270]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aGVhcnRiZWF0X21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-3b831e5d1bb1e3bd91517be0c91ba203]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aGVhcnRtb25pdG9yX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-1755715d4c7280a4de1892150ae23b57]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aHR0cDJfbW9kdWxl b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-e3d6d47dbb598374bebe8c3319f6ec6a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aWRlbnRfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-277ad706578e67acb3e8eef78e88a72a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aW1hZ2VtYXBfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-d7d8372c6634d12affafe775109e6bea]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aW5jbHVkZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ad49f72fbe2a876e1648f1fc959dc28e]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aW5mb19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-547b1779904bdbcd9f84a4bfe6d9547f]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule aXNhcGlfbW9kdWxl b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-5c7fa07950651edb0c2b484d96a9e540]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bGJtZXRob2RfYnlidXN5bmVzc19tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-5e5e914a468103c9e37c6ee7303d8229]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bGJtZXRob2RfYnlyZXF1ZXN0c19tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-e4cb7fced6a303561ed7f2468b11825f]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bGJtZXRob2RfYnl0cmFmZmljX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7bb3c77935ed3e6f9ed6e1400e26dcae]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bGJtZXRob2RfaGVhcnRiZWF0X21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-98d188d4e0fefe86a9e3bf76b3176e9c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bGRhcF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-715dfbfb3bb16e9674176e4871c466b1]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bG9nX2NvbmZpZ19tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-b72c25926da351e751abf3fadb6e2968]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bG9nX2RlYnVnX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f3dbf7d9c80f3e62e240b7dafac0683c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bG9nX2ZvcmVuc2ljX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-422426ecbe2af6780ffaf4365dbe5683]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bG9naW9fbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f7b676b1e4140d330d3a9bd5dc408d7c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bHVhX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-24fb5820424086ce73ab5864037f2b6b]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bWFjcm9fbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ffb42528ea9a086f364af8e8d4701e24]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bWltZV9tYWdpY19tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ad49736679127c7cfea4025a48c15415]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bWltZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-07f573f096564fab92737479feaaec3c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule bmVnb3RpYXRpb25fbW9kdWxl b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-587952ef0a0e521d94faf04e9276e52c]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfYWpwX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-3fc6e2c162cbf6919fe2b24312ba264e]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfYmFsYW5jZXJfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-33b0e5d43a04a00e24c83dad055aa75a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfY29ubmVjdF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f74a3ec976c33e39d1bba20efcc900de]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfZXhwcmVzc19tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7e7cfeffcecc6f724319981d8a43881f]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfZmNnaV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-481aa60de8a66d958a59cf3f7b63ec82]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfZnRwX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-56f5d664b6f6384aea966c9f755a61e9]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfaHRtbF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-669f8b55562c5d10e2636c7c91e3b709]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfaHR0cDJfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-46ba119437ff8b04a93023ecbd6577d0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfaHR0cF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-98510f545e466e9014bf7f9f3af2ca9a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-391c5f15571abf2150878d1f23beccb0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfc2NnaV9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-6580b7c612daf2ff122b6e7ced2586e0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cHJveHlfd3N0dW5uZWxfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-7c020a620a5aabfcf003da6e3160c117]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmF0ZWxpbWl0X21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-d410c0e8a463f8630b857cc74a786f0a]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmVmbGVjdG9yX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ad80f7fce4f55223a4c14e3e3024e951]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmVtb3RlaXBfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-f488a4e843ea0df0fa27b35e65fad561]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmVxdGltZW91dF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-c4490efb96eb1c220fce3dfc0c4ac899]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmVxdWVzdF9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-ea3f90e3dd80ab7e374aa234c1dfd0f0]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule cmV3cml0ZV9tb2R1bGU= b2Zm"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-fb7cbe2b51622c8b6d1c160a9ef9846d]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule c2VkX21vZHVsZQ== b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-c94025f7c5f72741a0f625aa33419499]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule c2Vzc2lvbl9jb29raWVfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-3dc1b2b8019277fe5b962db985ecd211]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule c2Vzc2lvbl9jcnlwdG9fbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-4d15a6c4f1bf7d6a9f46dc5f3703cf72]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule c2Vzc2lvbl9kYmRfbW9kdWxl b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: resetservices
Action: readconfig
[ActionSwitchApacheModule-6eaf2166e4b274b4e45acf8850b10a42]
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php switchApacheModule c2Vzc2lvbl9tb2R1bGU= b24="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php service bmVhcmRhcGFjaGU= cmVzdGFydA=="; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated
Action: run; FileName: "%AeTrayMenuPath%core/libs/php/php-win.exe"; Parameters: "bootstrap.php reload"; WorkingDir: "%AeTrayMenuPath%core"; Flags: waituntilterminated