Findstr - code für schwieriger Abfrage gesucht
Wer kann mir helfen, ich möchte beigefügter Log Datei folgende Informationen per cmd auslesen.
Da bei uns Installationen automatisiert ablaufen und Ordner bekommen die Downloads automatisch
Ordner in denen die Setup Dateien enthalten sind. Benötigt man jedoch einmal diesen Ordner weiß man
nicht wo man diesen suchen soll deswegen gibt es beigefügte Logdatei. Wenn ich jetzt also ein Programm
suchen möchte muss ich mich erst durch diese Datei suchen. Da die Programme per Nummern zu
identifizieren sind. Würde ich folgende Suche in einem Script umsetzen wollen.
Eingabe : 108458.1
oder
Eingabe : EMET_4.1
soll folgendes Ergebnis liefern
Ausgabe:
Installordner : C:\Windows\ccmcache\2
Script gestartet : 09-08-2016 17:13
Script beendet : 09-08-2016 17:15 mit Code 0
Zu beachten ist das es doppelte Einträge geben kann so das alle Einträge aufgelistet werden sollen wobei der jüngste
Eintrag zuerst erscheinen sollte.
Ich danke Euch schon erst einmal im voraus.
Da bei uns Installationen automatisiert ablaufen und Ordner bekommen die Downloads automatisch
Ordner in denen die Setup Dateien enthalten sind. Benötigt man jedoch einmal diesen Ordner weiß man
nicht wo man diesen suchen soll deswegen gibt es beigefügte Logdatei. Wenn ich jetzt also ein Programm
suchen möchte muss ich mich erst durch diese Datei suchen. Da die Programme per Nummern zu
identifizieren sind. Würde ich folgende Suche in einem Script umsetzen wollen.
Eingabe : 108458.1
oder
Eingabe : EMET_4.1
soll folgendes Ergebnis liefern
Ausgabe:
Installordner : C:\Windows\ccmcache\2
Script gestartet : 09-08-2016 17:13
Script beendet : 09-08-2016 17:15 mit Code 0
Zu beachten ist das es doppelte Einträge geben kann so das alle Einträge aufgelistet werden sollen wobei der jüngste
Eintrag zuerst erscheinen sollte.
Ich danke Euch schon erst einmal im voraus.
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
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
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200373.1_1_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, Revision - 3, ContentPath - C:\Windows\ccmcache\1, Execution Context - System]LOG]!><time="17:07:57.236-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:07:57.238-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200373.1_1_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, revision 3) for system.]LOG]!><time="17:07:57.242-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, Revision: 3]]LOG]!><time="17:07:58.717-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: WScript.exe "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\1
Working directory: ]LOG]!><time="17:07:58.719-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\1]LOG]!><time="17:07:58.720-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appcontext.cpp:189">
<![LOG[Found executable file WScript.exe with complete path C:\Windows\system32\WScript.exe]LOG]!><time="17:07:58.723-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM]LOG]!><time="17:07:58.725-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM with user context]LOG]!><time="17:07:58.726-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\1]LOG]!><time="17:07:58.726-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:07:59.129-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 69184 to finish. Timeout = 120 minutes.]LOG]!><time="17:07:59.131-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appexcnlib.cpp:2015">
<![LOG[ Process 69184 terminated with exitcode: 1505]LOG]!><time="17:09:07.036-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1505 in exit codes table...]LOG]!><time="17:09:07.037-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1505) is considered an execution failure.]LOG]!><time="17:09:07.038-120" date="09-08-2016" component="AppEnforce" context="" type="2" thread="37536" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (69 seconds) for App DT "DT_R_200373.1_1_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051], Revision: 3, User SID: ] ++++++]LOG]!><time="17:09:07.040-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="37536" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_200510.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c, Revision - 1, ContentPath - C:\Windows\ccmcache\3, Execution Context - System]LOG]!><time="17:11:00.699-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:11:00.701-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_200510.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c, revision 1) for system.]LOG]!><time="17:11:00.708-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c, Revision: 1]]LOG]!><time="17:11:02.422-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "SAP GUI_7.40 PL09_MUL_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\3
Working directory: ]LOG]!><time="17:11:02.423-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\3]LOG]!><time="17:11:02.426-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="17:11:02.431-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL09_MUL_1.0.vbs" /i /SCCM]LOG]!><time="17:11:02.440-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL09_MUL_1.0.vbs" /i /SCCM with user context]LOG]!><time="17:11:02.441-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\3]LOG]!><time="17:11:02.442-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:11:03.128-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 71496 to finish. Timeout = 120 minutes.]LOG]!><time="17:11:03.131-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2015">
<![LOG[ Process 71496 terminated with exitcode: 0]LOG]!><time="17:12:54.748-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="17:12:54.749-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="17:12:54.750-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_200510.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c, revision 1) for system.]LOG]!><time="17:12:54.762-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c, Revision: 1]]LOG]!><time="17:12:56.013-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (115 seconds) for App DT "DT_200510.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4a0025c9-d15a-48d3-8da0-88ee7f0f0a2c], Revision: 1, User SID: ] ++++++]LOG]!><time="17:12:56.014-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200373.1_1_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, Revision - 3, ContentPath - C:\Windows\ccmcache\1, Execution Context - System]LOG]!><time="17:12:56.103-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:12:56.104-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200373.1_1_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, revision 3) for system.]LOG]!><time="17:12:56.107-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, Revision: 3]]LOG]!><time="17:12:57.644-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: WScript.exe "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\1
Working directory: ]LOG]!><time="17:12:57.646-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\1]LOG]!><time="17:12:57.648-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:189">
<![LOG[Found executable file WScript.exe with complete path C:\Windows\system32\WScript.exe]LOG]!><time="17:12:57.653-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM]LOG]!><time="17:12:57.654-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200373.1_Global_Rollout_NetworkDriver5TR5K_1.0.vbs" /i /SCCM with user context]LOG]!><time="17:12:57.655-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\1]LOG]!><time="17:12:57.656-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:12:57.689-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 71336 to finish. Timeout = 120 minutes.]LOG]!><time="17:12:57.693-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2015">
<![LOG[ Process 71336 terminated with exitcode: 0]LOG]!><time="17:13:39.342-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="17:13:39.343-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="17:13:39.344-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200373.1_1_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, revision 3) for system.]LOG]!><time="17:13:39.349-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051, Revision: 3]]LOG]!><time="17:13:40.793-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (44 seconds) for App DT "DT_R_200373.1_1_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_a33e01c3-055c-4074-b7d5-1886cda8a051], Revision: 3, User SID: ] ++++++]LOG]!><time="17:13:40.794-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_104111.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a, Revision - 4, ContentPath - C:\Windows\ccmcache\4, Execution Context - System]LOG]!><time="17:13:40.832-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:13:40.833-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_104111.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a, revision 4) for system.]LOG]!><time="17:13:40.837-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a, Revision: 4]]LOG]!><time="17:13:43.411-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "ESTOS pro Call Business_2.2.28_GER_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\4
Working directory: ]LOG]!><time="17:13:43.413-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\4]LOG]!><time="17:13:43.416-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="17:13:43.421-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "ESTOS pro Call Business_2.2.28_GER_1.0.vbs" /i /SCCM]LOG]!><time="17:13:43.422-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "ESTOS pro Call Business_2.2.28_GER_1.0.vbs" /i /SCCM with user context]LOG]!><time="17:13:43.424-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\4]LOG]!><time="17:13:43.424-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:13:43.588-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 33596 to finish. Timeout = 120 minutes.]LOG]!><time="17:13:43.591-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2015">
<![LOG[ Process 33596 terminated with exitcode: 0]LOG]!><time="17:13:48.062-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="17:13:48.063-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="17:13:48.064-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_104111.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a, revision 4) for system.]LOG]!><time="17:13:48.071-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a, Revision: 4]]LOG]!><time="17:13:49.566-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (8 seconds) for App DT "DT_104111.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f6941136-ce79-464a-a116-4637766f664a], Revision: 4, User SID: ] ++++++]LOG]!><time="17:13:49.567-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_108458.1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c, Revision - 11, ContentPath - C:\Windows\ccmcache\2, Execution Context - System]LOG]!><time="17:13:49.669-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:13:49.670-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_108458.1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c, revision 11) for system.]LOG]!><time="17:13:49.674-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c, Revision: 11]]LOG]!><time="17:13:51.478-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "108458.1_Global_Rollout_Uninstall_EMET_4.1_ENG.vbs" /u /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\2
Working directory: ]LOG]!><time="17:13:51.479-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\2]LOG]!><time="17:13:51.481-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="17:13:51.486-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "108458.1_Global_Rollout_Uninstall_EMET_4.1_ENG.vbs" /u /SCCM]LOG]!><time="17:13:51.487-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "108458.1_Global_Rollout_Uninstall_EMET_4.1_ENG.vbs" /u /SCCM with user context]LOG]!><time="17:13:51.489-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\2]LOG]!><time="17:13:51.490-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:13:52.082-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 46560 to finish. Timeout = 120 minutes.]LOG]!><time="17:13:52.085-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2015">
<![LOG[ Process 46560 terminated with exitcode: 0]LOG]!><time="17:15:04.010-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="17:15:04.010-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="17:15:04.011-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_108458.1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c, revision 11) for system.]LOG]!><time="17:15:04.019-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c, Revision: 11]]LOG]!><time="17:15:05.473-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (75 seconds) for App DT "DT_R_108458.1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_250d41f3-34ca-4051-8bed-0a2400cf282c], Revision: 11, User SID: ] ++++++]LOG]!><time="17:15:05.474-120" date="09-08-2016" component="AppEnforce" context="" type="1" thread="70888" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200148.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1, Revision - 3, ContentPath - C:\Windows\ccmcache\5, Execution Context - System]LOG]!><time="07:07:53.908-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:07:53.948-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200148.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1, revision 3) for system.]LOG]!><time="07:07:53.953-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1, Revision: 3]]LOG]!><time="07:07:55.539-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "200148.1_Global_Rollout_FireEye HX Agent_21.33.0_ENG_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\5
Working directory: ]LOG]!><time="07:07:55.540-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\5]LOG]!><time="07:07:55.543-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="07:07:55.547-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "200148.1_Global_Rollout_FireEye HX Agent_21.33.0_ENG_1.0.vbs" /i /SCCM]LOG]!><time="07:07:55.560-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "200148.1_Global_Rollout_FireEye HX Agent_21.33.0_ENG_1.0.vbs" /i /SCCM with system context]LOG]!><time="07:07:55.561-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\5]LOG]!><time="07:07:55.562-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:07:55.732-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 20468 to finish. Timeout = 120 minutes.]LOG]!><time="07:07:55.735-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:2015">
<![LOG[ Process 20468 terminated with exitcode: 0]LOG]!><time="07:08:36.215-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="07:08:36.216-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="07:08:36.216-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200148.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1, revision 3) for system.]LOG]!><time="07:08:36.224-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1, Revision: 3]]LOG]!><time="07:08:37.551-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (44 seconds) for App DT "DT_R_200148.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_4387ff64-e468-4f0f-9cf8-fcebac1e7ca1], Revision: 3, User SID: ] ++++++]LOG]!><time="07:08:37.552-120" date="09-12-2016" component="AppEnforce" context="" type="1" thread="12180" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_111753.1_3_WIN7_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, Revision - 9, ContentPath - C:\Windows\ccmcache\8, Execution Context - System]LOG]!><time="14:40:20.700-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="14:40:20.705-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_111753.1_3_WIN7_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, revision 9) for system.]LOG]!><time="14:40:20.709-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, Revision: 9]]LOG]!><time="14:40:22.054-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\8
Working directory: ]LOG]!><time="14:40:22.056-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\8]LOG]!><time="14:40:22.058-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="14:40:22.062-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM]LOG]!><time="14:40:22.070-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM with user context]LOG]!><time="14:40:22.071-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\8]LOG]!><time="14:40:22.072-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="14:40:22.200-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 19132 to finish. Timeout = 120 minutes.]LOG]!><time="14:40:22.203-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appexcnlib.cpp:2015">
<![LOG[ Process 19132 terminated with exitcode: 1604]LOG]!><time="14:45:59.044-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="14:45:59.045-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="14:45:59.046-120" date="09-16-2016" component="AppEnforce" context="" type="2" thread="42460" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (338 seconds) for App DT "DT_R_111753.1_3_WIN7_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9], Revision: 9, User SID: ] ++++++]LOG]!><time="14:45:59.050-120" date="09-16-2016" component="AppEnforce" context="" type="1" thread="42460" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_111753.1_3_WIN7_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, Revision - 9, ContentPath - C:\Windows\ccmcache\8, Execution Context - System]LOG]!><time="08:56:28.834-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:56:28.845-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_111753.1_3_WIN7_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, revision 9) for system.]LOG]!><time="08:56:28.849-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9, Revision: 9]]LOG]!><time="08:56:30.202-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\8
Working directory: ]LOG]!><time="08:56:30.204-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\8]LOG]!><time="08:56:30.207-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="08:56:30.212-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM]LOG]!><time="08:56:30.214-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "111753.1_Global_Rollout_Kaspersky Endpoint Security 10 SP1 MR2_10.2.4.674_ENG_1.4.vbs" /i /SCCM with user context]LOG]!><time="08:56:30.215-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\8]LOG]!><time="08:56:30.216-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:56:30.264-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 11576 to finish. Timeout = 120 minutes.]LOG]!><time="08:56:30.266-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:2015">
<![LOG[ Process 11576 terminated with exitcode: 1641]LOG]!><time="08:59:32.247-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1641 in exit codes table...]LOG]!><time="08:59:32.248-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 1641 to a PendingHardReboot entry in exit codes table.]LOG]!><time="08:59:32.249-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appexcnlib.cpp:587">
<![LOG[++++++ App enforcement completed (184 seconds) for App DT "DT_R_111753.1_3_WIN7_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0439f310-9a93-4586-ace1-53a6bae83da9], Revision: 9, User SID: ] ++++++]LOG]!><time="08:59:32.256-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11976" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200412.1_2_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0, Revision - 11, ContentPath - C:\Windows\ccmcache\9, Execution Context - System]LOG]!><time="09:55:52.011-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="09:55:52.016-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200412.1_2_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0, revision 11) for system.]LOG]!><time="09:55:52.021-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0, Revision: 11]]LOG]!><time="09:55:53.527-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200412.1_Global_Rollout_Docking Update WotF_Q3_ENG_1.0.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\9
Working directory: ]LOG]!><time="09:55:53.530-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\9]LOG]!><time="09:55:53.532-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="09:55:53.537-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200412.1_Global_Rollout_Docking Update WotF_Q3_ENG_1.0.vbs" /i /SCCM]LOG]!><time="09:55:53.540-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200412.1_Global_Rollout_Docking Update WotF_Q3_ENG_1.0.vbs" /i /SCCM with user context]LOG]!><time="09:55:53.541-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\9]LOG]!><time="09:55:53.542-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="09:55:55.817-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 5840 to finish. Timeout = 119 minutes.]LOG]!><time="09:55:55.822-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:2015">
<![LOG[ Process 5840 terminated with exitcode: 0]LOG]!><time="09:56:43.516-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="09:56:43.517-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="09:56:43.518-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200412.1_2_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0, revision 11) for system.]LOG]!><time="09:56:43.523-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0, Revision: 11]]LOG]!><time="09:56:44.751-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (52 seconds) for App DT "DT_R_200412.1_2_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_0164b572-b071-4d2c-be71-c1a4ffe373e0], Revision: 11, User SID: ] ++++++]LOG]!><time="09:56:44.753-120" date="09-19-2016" component="AppEnforce" context="" type="1" thread="11464" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_111014.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098, Revision - 6, ContentPath - C:\Windows\ccmcache\i, Execution Context - System]LOG]!><time="08:50:27.472-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:50:27.477-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_111014.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098, revision 6) for system.]LOG]!><time="08:50:27.481-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098, Revision: 6]]LOG]!><time="08:50:28.763-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "SAP GUI_7.40 PL04_MUL_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\i
Working directory: ]LOG]!><time="08:50:28.764-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\i]LOG]!><time="08:50:28.767-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="08:50:28.771-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL04_MUL_1.0.vbs" /i /SCCM]LOG]!><time="08:50:28.774-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL04_MUL_1.0.vbs" /i /SCCM with user context]LOG]!><time="08:50:28.775-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\i]LOG]!><time="08:50:28.776-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:50:28.860-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 8244 to finish. Timeout = 120 minutes.]LOG]!><time="08:50:28.863-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:2015">
<![LOG[ Process 8244 terminated with exitcode: 0]LOG]!><time="08:50:35.991-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="08:50:35.993-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="08:50:35.994-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_111014.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098, revision 6) for system.]LOG]!><time="08:50:36.001-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098, Revision: 6]]LOG]!><time="08:50:37.284-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (9 seconds) for App DT "DT_111014.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_eb590621-003f-4bf4-8d96-aff6a74da098], Revision: 6, User SID: ] ++++++]LOG]!><time="08:50:37.285-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="12036" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_108151.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df, Revision - 1, ContentPath - C:\Windows\ccmcache\k, Execution Context - System]LOG]!><time="08:50:57.790-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:50:57.791-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_108151.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df, revision 1) for system.]LOG]!><time="08:50:57.796-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df, Revision: 1]]LOG]!><time="08:50:59.999-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "SAP GUI Access Patch_1.1_MUL_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\k
Working directory: ]LOG]!><time="08:51:00.001-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\k]LOG]!><time="08:51:00.004-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="08:51:00.009-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "SAP GUI Access Patch_1.1_MUL_1.0.vbs" /i /SCCM]LOG]!><time="08:51:00.011-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "SAP GUI Access Patch_1.1_MUL_1.0.vbs" /i /SCCM with user context]LOG]!><time="08:51:00.013-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\k]LOG]!><time="08:51:00.016-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:51:00.197-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 5824 to finish. Timeout = 120 minutes.]LOG]!><time="08:51:00.202-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:2015">
<![LOG[ Process 5824 terminated with exitcode: 0]LOG]!><time="08:51:06.596-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="08:51:06.597-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="08:51:06.598-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_108151.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df, revision 1) for system.]LOG]!><time="08:51:06.605-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df, Revision: 1]]LOG]!><time="08:51:07.780-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (10 seconds) for App DT "DT_108151.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_2345e864-faf9-4e57-861b-d4768e2843df], Revision: 1, User SID: ] ++++++]LOG]!><time="08:51:07.781-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_111644.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, Revision - 6, ContentPath - C:\Windows\ccmcache\j, Execution Context - System]LOG]!><time="08:51:07.805-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:51:07.806-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_111644.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, revision 6) for system.]LOG]!><time="08:51:07.808-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, Revision: 6]]LOG]!><time="08:51:09.086-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\j
Working directory: ]LOG]!><time="08:51:09.087-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\j]LOG]!><time="08:51:09.090-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="08:51:09.094-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM]LOG]!><time="08:51:09.095-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM with user context]LOG]!><time="08:51:09.096-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\j]LOG]!><time="08:51:09.097-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:51:09.372-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 14332 to finish. Timeout = 120 minutes.]LOG]!><time="08:51:09.375-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:2015">
<![LOG[ Process 14332 terminated with exitcode: 1604]LOG]!><time="08:51:14.301-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="08:51:14.302-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="08:51:14.303-120" date="09-23-2016" component="AppEnforce" context="" type="2" thread="9020" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (6 seconds) for App DT "DT_111644.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e], Revision: 6, User SID: ] ++++++]LOG]!><time="08:51:14.305-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="9020" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200166.1_3_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22, Revision - 4, ContentPath - C:\Windows\ccmcache\l, Execution Context - System]LOG]!><time="12:26:50.583-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="12:26:50.586-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200166.1_3_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22, revision 4) for system.]LOG]!><time="12:26:50.589-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22, Revision: 4]]LOG]!><time="12:26:51.836-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "200166.1_Global_Rollout_User Environment Manager_9.0_ENG_3.1.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\l
Working directory: ]LOG]!><time="12:26:51.837-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\l]LOG]!><time="12:26:51.839-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="12:26:51.843-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "200166.1_Global_Rollout_User Environment Manager_9.0_ENG_3.1.vbs" /i /SCCM]LOG]!><time="12:26:51.851-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "200166.1_Global_Rollout_User Environment Manager_9.0_ENG_3.1.vbs" /i /SCCM with system context]LOG]!><time="12:26:51.852-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\l]LOG]!><time="12:26:51.852-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="12:26:52.122-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 11256 to finish. Timeout = 120 minutes.]LOG]!><time="12:26:52.124-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:2015">
<![LOG[ Process 11256 terminated with exitcode: 0]LOG]!><time="12:27:15.903-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="12:27:15.904-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="12:27:15.904-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200166.1_3_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22, revision 4) for system.]LOG]!><time="12:27:15.912-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22, Revision: 4]]LOG]!><time="12:27:16.999-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (26 seconds) for App DT "DT_R_200166.1_3_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_52a1c42d-bab4-4009-a4c2-52f115b3af22], Revision: 4, User SID: ] ++++++]LOG]!><time="12:27:17.000-120" date="09-23-2016" component="AppEnforce" context="" type="1" thread="14876" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200286.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba, Revision - 6, ContentPath - C:\Windows\ccmcache\q, Execution Context - System]LOG]!><time="07:18:04.955-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:18:04.961-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200286.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba, revision 6) for system.]LOG]!><time="07:18:04.966-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba, Revision: 6]]LOG]!><time="07:18:06.520-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: WScript.exe "200286.1_Global_Rollout_OneDrive for Business_1.0.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\q
Working directory: ]LOG]!><time="07:18:06.521-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\q]LOG]!><time="07:18:06.524-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appcontext.cpp:189">
<![LOG[Found executable file WScript.exe with complete path C:\Windows\system32\WScript.exe]LOG]!><time="07:18:06.527-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200286.1_Global_Rollout_OneDrive for Business_1.0.vbs" /i /SCCM]LOG]!><time="07:18:06.529-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200286.1_Global_Rollout_OneDrive for Business_1.0.vbs" /i /SCCM with user context]LOG]!><time="07:18:06.530-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\q]LOG]!><time="07:18:06.531-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:18:06.867-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 11988 to finish. Timeout = 120 minutes.]LOG]!><time="07:18:06.870-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:2015">
<![LOG[ Process 11988 terminated with exitcode: 0]LOG]!><time="07:18:32.508-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="07:18:32.508-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="07:18:32.509-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200286.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba, revision 6) for system.]LOG]!><time="07:18:32.514-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba, Revision: 6]]LOG]!><time="07:18:33.617-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (28 seconds) for App DT "DT_R_200286.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_d1ecef3e-4f61-486d-9c73-3f6ed58f31ba], Revision: 6, User SID: ] ++++++]LOG]!><time="07:18:33.618-120" date="10-07-2016" component="AppEnforce" context="" type="1" thread="20364" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200228.1_9_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision - 19, ContentPath - C:\Windows\ccmcache\r, Execution Context - System]LOG]!><time="13:10:39.115-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="13:10:39.121-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200228.1_9_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, revision 19) for system.]LOG]!><time="13:10:39.125-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision: 19]]LOG]!><time="13:10:40.470-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\r
Working directory: ]LOG]!><time="13:10:40.472-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\r]LOG]!><time="13:10:40.474-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="13:10:40.479-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM]LOG]!><time="13:10:40.482-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM with user context]LOG]!><time="13:10:40.483-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\r]LOG]!><time="13:10:40.484-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="13:10:40.839-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 17872 to finish. Timeout = 120 minutes.]LOG]!><time="13:10:40.843-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appexcnlib.cpp:2015">
<![LOG[ Process 17872 terminated with exitcode: 1604]LOG]!><time="13:40:47.672-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="13:40:47.673-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="13:40:47.674-120" date="10-11-2016" component="AppEnforce" context="" type="2" thread="13132" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (1808 seconds) for App DT "DT_R_200228.1_9_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d], Revision: 19, User SID: ] ++++++]LOG]!><time="13:40:47.678-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="13132" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200228.1_9_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision - 19, ContentPath - C:\Windows\ccmcache\r, Execution Context - System]LOG]!><time="17:52:00.982-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="17:52:00.982-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200228.1_9_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, revision 19) for system.]LOG]!><time="17:52:00.982-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision: 19]]LOG]!><time="17:52:02.292-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 7
Content path: C:\Windows\ccmcache\r
Working directory: ]LOG]!><time="17:52:02.292-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\r]LOG]!><time="17:52:02.292-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="17:52:02.292-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM]LOG]!><time="17:52:02.307-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM with user context]LOG]!><time="17:52:02.307-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\r]LOG]!><time="17:52:02.307-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="17:52:02.338-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 22284 to finish. Timeout = 120 minutes.]LOG]!><time="17:52:02.338-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appexcnlib.cpp:2015">
<![LOG[ Process 22284 terminated with exitcode: 1604]LOG]!><time="17:52:50.076-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="17:52:50.076-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="17:52:50.076-120" date="10-11-2016" component="AppEnforce" context="" type="2" thread="8168" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (49 seconds) for App DT "DT_R_200228.1_9_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d], Revision: 19, User SID: ] ++++++]LOG]!><time="17:52:50.076-120" date="10-11-2016" component="AppEnforce" context="" type="1" thread="8168" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200359.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04, Revision - 4, ContentPath - C:\Windows\ccmcache\v, Execution Context - System]LOG]!><time="16:57:03.307-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="16:57:03.312-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200359.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04, revision 4) for system.]LOG]!><time="16:57:03.318-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04, Revision: 4]]LOG]!><time="16:57:05.003-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200359.1_Global_Rollout_Outlook Signature Tool_2.0_MUL.vbs" /i /sccm
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\v
Working directory: ]LOG]!><time="16:57:05.004-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\v]LOG]!><time="16:57:05.006-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="16:57:05.011-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200359.1_Global_Rollout_Outlook Signature Tool_2.0_MUL.vbs" /i /sccm]LOG]!><time="16:57:05.022-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200359.1_Global_Rollout_Outlook Signature Tool_2.0_MUL.vbs" /i /sccm with user context]LOG]!><time="16:57:05.024-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\v]LOG]!><time="16:57:05.025-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="16:57:05.576-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 17996 to finish. Timeout = 120 minutes.]LOG]!><time="16:57:05.580-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:2015">
<![LOG[ Process 17996 terminated with exitcode: 0]LOG]!><time="16:57:30.908-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="16:57:30.909-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="16:57:30.910-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200359.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04, revision 4) for system.]LOG]!><time="16:57:30.919-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04, Revision: 4]]LOG]!><time="16:57:32.245-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (29 seconds) for App DT "DT_R_200359.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6a348938-894b-435a-abfe-50895f0e4e04], Revision: 4, User SID: ] ++++++]LOG]!><time="16:57:32.247-120" date="10-23-2016" component="AppEnforce" context="" type="1" thread="16756" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200861.1_3_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision - 8, ContentPath - C:\Windows\ccmcache\y, Execution Context - System]LOG]!><time="07:58:25.805-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:58:25.809-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200861.1_3_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, revision 8) for system.]LOG]!><time="07:58:25.813-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision: 8]]LOG]!><time="07:58:27.045-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\y
Working directory: ]LOG]!><time="07:58:27.046-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\y]LOG]!><time="07:58:27.049-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="07:58:27.053-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM]LOG]!><time="07:58:27.056-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM with user context]LOG]!><time="07:58:27.057-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\y]LOG]!><time="07:58:27.058-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:58:27.381-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 11032 to finish. Timeout = 120 minutes.]LOG]!><time="07:58:27.383-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appexcnlib.cpp:2015">
<![LOG[ Process 11032 terminated with exitcode: 1505]LOG]!><time="07:58:35.075-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1505 in exit codes table...]LOG]!><time="07:58:35.076-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1505) is considered an execution failure.]LOG]!><time="07:58:35.077-120" date="10-24-2016" component="AppEnforce" context="" type="2" thread="7868" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (9 seconds) for App DT "DT_R_200861.1_3_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c], Revision: 8, User SID: ] ++++++]LOG]!><time="07:58:35.079-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="7868" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200228.1_9_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision - 19, ContentPath - C:\Windows\ccmcache\r, Execution Context - System]LOG]!><time="09:01:40.450-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="09:01:40.452-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200228.1_9_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, revision 19) for system.]LOG]!><time="09:01:40.456-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision: 19]]LOG]!><time="09:01:41.899-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\r
Working directory: ]LOG]!><time="09:01:41.900-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\r]LOG]!><time="09:01:41.903-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="09:01:41.908-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM]LOG]!><time="09:01:41.910-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM with user context]LOG]!><time="09:01:41.911-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\r]LOG]!><time="09:01:41.912-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="09:01:41.958-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 15464 to finish. Timeout = 120 minutes.]LOG]!><time="09:01:41.961-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:2015">
<![LOG[ Process 15464 terminated with exitcode: 1604]LOG]!><time="09:01:53.721-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="09:01:53.722-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="09:01:53.725-120" date="10-24-2016" component="AppEnforce" context="" type="2" thread="14976" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (13 seconds) for App DT "DT_R_200228.1_9_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d], Revision: 19, User SID: ] ++++++]LOG]!><time="09:01:53.728-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200861.1_3_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision - 8, ContentPath - C:\Windows\ccmcache\y, Execution Context - System]LOG]!><time="09:01:54.130-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="09:01:54.132-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200861.1_3_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, revision 8) for system.]LOG]!><time="09:01:54.138-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision: 8]]LOG]!><time="09:01:55.548-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\y
Working directory: ]LOG]!><time="09:01:55.550-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\y]LOG]!><time="09:01:55.552-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="09:01:55.556-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM]LOG]!><time="09:01:55.557-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM with user context]LOG]!><time="09:01:55.558-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\y]LOG]!><time="09:01:55.559-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="09:01:55.588-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 16380 to finish. Timeout = 120 minutes.]LOG]!><time="09:01:55.591-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:2015">
<![LOG[ Process 16380 terminated with exitcode: 1505]LOG]!><time="09:02:02.215-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1505 in exit codes table...]LOG]!><time="09:02:02.216-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1505) is considered an execution failure.]LOG]!><time="09:02:02.217-120" date="10-24-2016" component="AppEnforce" context="" type="2" thread="14976" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (8 seconds) for App DT "DT_R_200861.1_3_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c], Revision: 8, User SID: ] ++++++]LOG]!><time="09:02:02.219-120" date="10-24-2016" component="AppEnforce" context="" type="1" thread="14976" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200615.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c, Revision - 2, ContentPath - C:\Windows\ccmcache\z, Execution Context - System]LOG]!><time="13:12:45.263-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="13:12:45.267-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200615.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c, revision 2) for system.]LOG]!><time="13:12:45.270-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c, Revision: 2]]LOG]!><time="13:12:46.785-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "Office 365 Cache 32-bit_16.0.6741.2056_ENG_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\z
Working directory: ]LOG]!><time="13:12:46.786-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\z]LOG]!><time="13:12:46.789-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="13:12:46.793-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "Office 365 Cache 32-bit_16.0.6741.2056_ENG_1.0.vbs" /i /SCCM]LOG]!><time="13:12:46.806-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "Office 365 Cache 32-bit_16.0.6741.2056_ENG_1.0.vbs" /i /SCCM with system context]LOG]!><time="13:12:46.807-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\z]LOG]!><time="13:12:46.808-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="13:12:47.183-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 18116 to finish. Timeout = 120 minutes.]LOG]!><time="13:12:47.186-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:2015">
<![LOG[ Process 18116 terminated with exitcode: 0]LOG]!><time="13:12:53.618-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="13:12:53.619-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="13:12:53.620-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200615.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c, revision 2) for system.]LOG]!><time="13:12:53.627-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c, Revision: 2]]LOG]!><time="13:12:55.066-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (9 seconds) for App DT "DT_R_200615.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f21669c2-db63-4556-b4e0-400dbd229a2c], Revision: 2, User SID: ] ++++++]LOG]!><time="13:12:55.067-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200618.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11, Revision - 2, ContentPath - C:\Windows\ccmcache\10, Execution Context - System]LOG]!><time="13:12:55.605-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="13:12:55.605-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200618.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11, revision 2) for system.]LOG]!><time="13:12:55.609-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11, Revision: 2]]LOG]!><time="13:12:57.150-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "200618.1_Global_Rollout_Office 365 ProPlus_16.0.6741.2056_GER_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\10
Working directory: ]LOG]!><time="13:12:57.151-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\10]LOG]!><time="13:12:57.154-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="13:12:57.158-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "200618.1_Global_Rollout_Office 365 ProPlus_16.0.6741.2056_GER_1.0.vbs" /i /SCCM]LOG]!><time="13:12:57.159-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "200618.1_Global_Rollout_Office 365 ProPlus_16.0.6741.2056_GER_1.0.vbs" /i /SCCM with system context]LOG]!><time="13:12:57.159-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\10]LOG]!><time="13:12:57.160-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="13:12:57.475-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 33772 to finish. Timeout = 120 minutes.]LOG]!><time="13:12:57.478-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:2015">
<![LOG[ Process 33772 terminated with exitcode: 0]LOG]!><time="13:12:59.693-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="13:12:59.694-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="13:12:59.695-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200618.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11, revision 2) for system.]LOG]!><time="13:12:59.700-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11, Revision: 2]]LOG]!><time="13:13:01.454-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (5 seconds) for App DT "DT_R_200618.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_247c6d43-0b31-4dc1-bf37-ee07380d3d11], Revision: 2, User SID: ] ++++++]LOG]!><time="13:13:01.455-120" date="10-25-2016" component="AppEnforce" context="" type="1" thread="24540" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200228.1_9_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision - 19, ContentPath - C:\Windows\ccmcache\r, Execution Context - System]LOG]!><time="01:24:23.850-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6812" file="appprovider.cpp:1702">
<![LOG[ A user is not logged on to the system.]LOG]!><time="01:24:25.397-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6812" file="appprovider.cpp:2083">
<![LOG[ Waiting for user logon. App requires a user to be logged on and there is no user currently logged on.]LOG]!><time="01:24:25.397-120" date="10-28-2016" component="AppEnforce" context="" type="2" thread="6812" file="appprovider.cpp:2055">
<![LOG[++++++ App enforcement completed (1 seconds) for App DT "DT_R_200228.1_9_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d], Revision: 19, User SID: ] ++++++]LOG]!><time="01:24:25.397-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6812" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200861.1_3_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision - 8, ContentPath - C:\Windows\ccmcache\y, Execution Context - System]LOG]!><time="01:24:27.365-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6808" file="appprovider.cpp:1702">
<![LOG[ A user is not logged on to the system.]LOG]!><time="01:24:28.912-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6808" file="appprovider.cpp:2083">
<![LOG[ Waiting for user logon. App requires a user to be logged on and there is no user currently logged on.]LOG]!><time="01:24:28.912-120" date="10-28-2016" component="AppEnforce" context="" type="2" thread="6808" file="appprovider.cpp:2055">
<![LOG[++++++ App enforcement completed (1 seconds) for App DT "DT_R_200861.1_3_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c], Revision: 8, User SID: ] ++++++]LOG]!><time="01:24:28.912-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="6808" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200228.1_9_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision - 19, ContentPath - C:\Windows\ccmcache\r, Execution Context - System]LOG]!><time="07:00:26.617-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:00:26.617-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200228.1_9_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, revision 19) for system.]LOG]!><time="07:00:26.617-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision: 19]]LOG]!><time="07:00:28.164-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\r
Working directory: ]LOG]!><time="07:00:28.164-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\r]LOG]!><time="07:00:28.179-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="07:00:28.179-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM]LOG]!><time="07:00:28.179-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200228.1_Global_Rollout_WebEx Productivity Tools_2.40.600.10050_MUL_2.6.vbs" /i /SCCM with user context]LOG]!><time="07:00:28.179-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\r]LOG]!><time="07:00:28.179-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:00:28.242-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 8976 to finish. Timeout = 120 minutes.]LOG]!><time="07:00:28.242-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2015">
<![LOG[ Process 8976 terminated with exitcode: 0]LOG]!><time="07:02:42.195-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="07:02:42.196-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="07:02:42.197-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200228.1_9_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, revision 19) for system.]LOG]!><time="07:02:42.208-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d, Revision: 19]]LOG]!><time="07:02:44.160-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (137 seconds) for App DT "DT_R_200228.1_9_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_f48dd20b-adbb-4e3e-966a-ab573fa1ba2d], Revision: 19, User SID: ] ++++++]LOG]!><time="07:02:44.161-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200861.1_3_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision - 8, ContentPath - C:\Windows\ccmcache\y, Execution Context - System]LOG]!><time="07:02:44.821-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:02:44.822-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200861.1_3_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, revision 8) for system.]LOG]!><time="07:02:44.828-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision: 8]]LOG]!><time="07:02:46.476-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\y
Working directory: ]LOG]!><time="07:02:46.477-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\y]LOG]!><time="07:02:46.479-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="07:02:46.483-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM]LOG]!><time="07:02:46.484-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM with user context]LOG]!><time="07:02:46.486-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\y]LOG]!><time="07:02:46.487-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:02:46.536-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 6948 to finish. Timeout = 120 minutes.]LOG]!><time="07:02:46.539-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2015">
<![LOG[ Process 6948 terminated with exitcode: 1604]LOG]!><time="07:02:56.210-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="07:02:56.211-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="07:02:56.212-120" date="10-28-2016" component="AppEnforce" context="" type="2" thread="8588" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (11 seconds) for App DT "DT_R_200861.1_3_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c], Revision: 8, User SID: ] ++++++]LOG]!><time="07:02:56.214-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200861.1_3_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision - 8, ContentPath - C:\Windows\ccmcache\y, Execution Context - System]LOG]!><time="07:03:56.500-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="07:03:56.502-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200861.1_3_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, revision 8) for system.]LOG]!><time="07:03:56.506-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision: 8]]LOG]!><time="07:03:57.871-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\y
Working directory: ]LOG]!><time="07:03:57.873-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\y]LOG]!><time="07:03:57.875-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="07:03:57.879-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM]LOG]!><time="07:03:57.880-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200861.1_Global_Rollout_Kaspersky Private Fix 1791_1791_ENG_1.2.vbs" /i /SCCM with user context]LOG]!><time="07:03:57.882-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\y]LOG]!><time="07:03:57.882-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="07:03:57.921-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 13804 to finish. Timeout = 120 minutes.]LOG]!><time="07:03:57.923-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2015">
<![LOG[ Process 13804 terminated with exitcode: 0]LOG]!><time="07:04:33.551-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="07:04:33.552-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="07:04:33.553-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200861.1_3_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, revision 8) for system.]LOG]!><time="07:04:33.563-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c, Revision: 8]]LOG]!><time="07:04:34.887-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (38 seconds) for App DT "DT_R_200861.1_3_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_59727537-45e9-4daf-aeda-53be06f40f1c], Revision: 8, User SID: ] ++++++]LOG]!><time="07:04:34.888-120" date="10-28-2016" component="AppEnforce" context="" type="1" thread="8588" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_111708.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, Revision - 14, ContentPath - C:\Windows\ccmcache\16, Execution Context - System]LOG]!><time="14:55:35.830-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="14:55:35.841-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_111708.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, revision 14) for system.]LOG]!><time="14:55:35.846-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, Revision: 14]]LOG]!><time="14:55:37.202-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\16
Working directory: ]LOG]!><time="14:55:37.203-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\16]LOG]!><time="14:55:37.206-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="14:55:37.209-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM]LOG]!><time="14:55:37.217-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM with user context]LOG]!><time="14:55:37.218-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\16]LOG]!><time="14:55:37.219-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="14:55:37.277-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 17312 to finish. Timeout = 120 minutes.]LOG]!><time="14:55:37.281-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appexcnlib.cpp:2015">
<![LOG[ Process 17312 terminated with exitcode: 1604]LOG]!><time="14:55:46.150-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="14:55:46.152-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="14:55:46.153-60" date="10-31-2016" component="AppEnforce" context="" type="2" thread="6404" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (10 seconds) for App DT "DT_R_111708.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72], Revision: 14, User SID: ] ++++++]LOG]!><time="14:55:46.155-60" date="10-31-2016" component="AppEnforce" context="" type="1" thread="6404" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200482.1_3_WIN7_WIN8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f, Revision - 4, ContentPath - C:\Windows\ccmcache\17, Execution Context - System]LOG]!><time="08:46:24.426-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:46:24.431-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200482.1_3_WIN7_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f, revision 4) for system.]LOG]!><time="08:46:24.436-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f, Revision: 4]]LOG]!><time="08:46:27.259-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "Global_Removal_Rollout_TrafficMonitor_MUL.vbs" /u /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\17
Working directory: ]LOG]!><time="08:46:27.260-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\17]LOG]!><time="08:46:27.263-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="08:46:27.268-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "Global_Removal_Rollout_TrafficMonitor_MUL.vbs" /u /SCCM]LOG]!><time="08:46:27.280-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "Global_Removal_Rollout_TrafficMonitor_MUL.vbs" /u /SCCM with system context]LOG]!><time="08:46:27.281-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\17]LOG]!><time="08:46:27.282-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:46:27.993-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 10876 to finish. Timeout = 120 minutes.]LOG]!><time="08:46:27.996-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:2015">
<![LOG[ Process 10876 terminated with exitcode: 0]LOG]!><time="08:46:39.144-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="08:46:39.145-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="08:46:39.146-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200482.1_3_WIN7_WIN8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f, revision 4) for system.]LOG]!><time="08:46:39.154-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f, Revision: 4]]LOG]!><time="08:46:40.641-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (16 seconds) for App DT "DT_R_200482.1_3_WIN7_WIN8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_6408aa0e-9af1-46fa-b627-0644815d791f], Revision: 4, User SID: ] ++++++]LOG]!><time="08:46:40.642-60" date="11-02-2016" component="AppEnforce" context="" type="1" thread="5572" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_111708.1_1_Win7_Win8" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, Revision - 14, ContentPath - C:\Windows\ccmcache\16, Execution Context - System]LOG]!><time="13:57:33.813-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="13:57:33.816-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_111708.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, revision 14) for system.]LOG]!><time="13:57:33.819-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, Revision: 14]]LOG]!><time="13:57:35.267-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 3
Content path: C:\Windows\ccmcache\16
Working directory: ]LOG]!><time="13:57:35.269-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\16]LOG]!><time="13:57:35.271-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="13:57:35.273-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM]LOG]!><time="13:57:35.275-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "111708.1_Global_Rollout Office 365 ProPlus 32-bit_16.0.6001.1054_ENG_1.3.vbs" /i /SCCM with user context]LOG]!><time="13:57:35.276-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\16]LOG]!><time="13:57:35.277-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="13:57:35.310-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 7632 to finish. Timeout = 120 minutes.]LOG]!><time="13:57:35.314-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:2015">
<![LOG[ Process 7632 terminated with exitcode: 0]LOG]!><time="14:04:17.769-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="14:04:17.770-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="14:04:17.770-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_111708.1_1_Win7_Win8(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, revision 14) for system.]LOG]!><time="14:04:17.778-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72, Revision: 14]]LOG]!><time="14:04:19.164-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (405 seconds) for App DT "DT_R_111708.1_1_Win7_Win8" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_bb38321d-a175-44dc-8ce9-e5f8c6a50d72], Revision: 14, User SID: ] ++++++]LOG]!><time="14:04:19.165-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_111644.1_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, Revision - 6, ContentPath - C:\Windows\ccmcache\j, Execution Context - System]LOG]!><time="14:06:09.790-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="14:06:09.792-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_111644.1_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, revision 6) for system.]LOG]!><time="14:06:09.807-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e, Revision: 6]]LOG]!><time="14:06:11.305-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 3
Content path: C:\Windows\ccmcache\j
Working directory: ]LOG]!><time="14:06:11.306-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\j]LOG]!><time="14:06:11.308-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="14:06:11.314-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM]LOG]!><time="14:06:11.315-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\cscript.exe" "SAP GUI_7.40 PL07_MUL_1.1.vbs" /i /SCCM with user context]LOG]!><time="14:06:11.315-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\j]LOG]!><time="14:06:11.316-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="14:06:11.720-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 29300 to finish. Timeout = 120 minutes.]LOG]!><time="14:06:11.722-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:2015">
<![LOG[ Process 29300 terminated with exitcode: 1604]LOG]!><time="14:06:17.339-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 1604 in exit codes table...]LOG]!><time="14:06:17.340-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appexcnlib.cpp:508">
<![LOG[ Unmatched exit code (1604) is considered an execution failure.]LOG]!><time="14:06:17.341-60" date="11-03-2016" component="AppEnforce" context="" type="2" thread="6044" file="appexcnlib.cpp:594">
<![LOG[++++++ App enforcement completed (7 seconds) for App DT "DT_111644.1_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ef865f32-8b37-42fd-a6fa-6ae24625479e], Revision: 6, User SID: ] ++++++]LOG]!><time="14:06:17.343-60" date="11-03-2016" component="AppEnforce" context="" type="1" thread="6044" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_105531.2_1" ApplicationDeliveryType - DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7, Revision - 3, ContentPath - C:\Windows\ccmcache\1a, Execution Context - System]LOG]!><time="08:47:54.188-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:47:54.200-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_105531.2_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7, revision 3) for system.]LOG]!><time="08:47:54.206-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7, Revision: 3]]LOG]!><time="08:47:55.744-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: cscript.exe "Second Copy_8.0.4.1_ENG_1.0.vbs" /i /SCCM
Allow user interaction: No
UI mode: 1
User token: null
Session Id: 1
Content path: C:\Windows\ccmcache\1a
Working directory: ]LOG]!><time="08:47:55.745-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\1a]LOG]!><time="08:47:55.748-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appcontext.cpp:189">
<![LOG[Found executable file cscript.exe with complete path C:\Windows\system32\cscript.exe]LOG]!><time="08:47:55.754-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\cscript.exe" "Second Copy_8.0.4.1_ENG_1.0.vbs" /i /SCCM]LOG]!><time="08:47:55.768-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appcontext.cpp:338">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:47:56.444-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 9616 to finish. Timeout = 120 minutes.]LOG]!><time="08:47:56.448-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appexcnlib.cpp:2015">
<![LOG[ Process 9616 terminated with exitcode: 0]LOG]!><time="08:48:05.641-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="08:48:05.642-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="08:48:05.643-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_105531.2_1(DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7, revision 3) for system.]LOG]!><time="08:48:05.654-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7, Revision: 3]]LOG]!><time="08:48:07.058-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (12 seconds) for App DT "DT_105531.2_1" [DeploymentType_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_ca727cec-344d-4133-a0e9-5d0fdd94c4d7], Revision: 3, User SID: ] ++++++]LOG]!><time="08:48:07.059-60" date="11-04-2016" component="AppEnforce" context="" type="1" thread="9908" file="appprovider.cpp:2450">
<![LOG[+++ Starting Install enforcement for App DT "DT_R_200242.1_2_ALL" ApplicationDeliveryType - ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463, Revision - 8, ContentPath - C:\Windows\ccmcache\1c, Execution Context - System]LOG]!><time="08:52:38.938-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appprovider.cpp:1702">
<![LOG[ A user is logged on to the system.]LOG]!><time="08:52:38.978-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appprovider.cpp:2083">
<![LOG[ Performing detection of app deployment type DT_R_200242.1_2_ALL(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463, revision 8) for system.]LOG]!><time="08:52:38.984-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appprovider.cpp:2148">
<![LOG[+++ Application not discovered with script detection. [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463, Revision: 8]]LOG]!><time="08:52:40.689-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="scripthandler.cpp:500">
<![LOG[ App enforcement environment:
Context: Machine
Command line: wscript.exe "200242.1_Global_Rollout_WinZip_20_MUL_1.0.vbs" /i /SCCM
Allow user interaction: Yes
UI mode: 1
User token: null
Session Id: 4294967295
Content path: C:\Windows\ccmcache\1c
Working directory: ]LOG]!><time="08:52:40.690-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appcontext.cpp:85">
<![LOG[ Prepared working directory: C:\Windows\ccmcache\1c]LOG]!><time="08:52:40.693-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appcontext.cpp:189">
<![LOG[Found executable file wscript.exe with complete path C:\Windows\system32\wscript.exe]LOG]!><time="08:52:40.697-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="executility.cpp:188">
<![LOG[ Prepared command line: "C:\Windows\system32\wscript.exe" "200242.1_Global_Rollout_WinZip_20_MUL_1.0.vbs" /i /SCCM]LOG]!><time="08:52:40.700-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appcontext.cpp:338">
<![LOG[ Executing Command line: "C:\Windows\system32\wscript.exe" "200242.1_Global_Rollout_WinZip_20_MUL_1.0.vbs" /i /SCCM with user context]LOG]!><time="08:52:40.701-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:205">
<![LOG[ Working directory C:\Windows\ccmcache\1c]LOG]!><time="08:52:40.702-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:219">
<![LOG[ Post install behavior is BasedOnExitCode]LOG]!><time="08:52:41.423-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appcommon.cpp:1094">
<![LOG[ Waiting for process 12548 to finish. Timeout = 120 minutes.]LOG]!><time="08:52:41.427-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:2015">
<![LOG[ Process 12548 terminated with exitcode: 0]LOG]!><time="08:53:53.496-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:2024">
<![LOG[ Looking for exit code 0 in exit codes table...]LOG]!><time="08:53:53.498-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:508">
<![LOG[ Matched exit code 0 to a Success entry in exit codes table.]LOG]!><time="08:53:53.499-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appexcnlib.cpp:587">
<![LOG[ Performing detection of app deployment type DT_R_200242.1_2_ALL(ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463, revision 8) for system.]LOG]!><time="08:53:53.519-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appprovider.cpp:2148">
<![LOG[+++ Discovered application [AppDT Id: ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463, Revision: 8]]LOG]!><time="08:53:55.115-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="scripthandler.cpp:491">
<![LOG[++++++ App enforcement completed (77 seconds) for App DT "DT_R_200242.1_2_ALL" [ScopeId_7891ADDD-E323-473B-A421-2B6BB00C1257/DeploymentType_9644b810-dd4f-4a6c-b6da-52e82bda5463], Revision: 8, User SID: ] ++++++]LOG]!><time="08:53:55.116-60" date="11-15-2016" component="AppEnforce" context="" type="1" thread="10400" file="appprovider.cpp:2450">
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 321602
Url: https://administrator.de/forum/findstr-code-fuer-schwieriger-abfrage-gesucht-321602.html
Ausgedruckt am: 17.04.2025 um 08:04 Uhr
9 Kommentare
Neuester Kommentar

Hallo,
Für einen bescheidenen Anfang kann findstr aber die Datenmenge reduzieren:
hat "nur" noch 97 Zeilen
Gruß
LotPings
PS: zum experimentieren mit RegEx kannst du üben mit dem Editor NotePad++
- als erstes würde ich dir dringend empfehlen dein Log auf höchstens 50 Zeilen einzuachränken. 788 überlange Zeilen sind nicht nötig und hindern andere daran sich überhaupt damit zu beschäftigen.
- beschäftige dich einmal mit Regular Expressions, RegEx oder Reguläre Ausdrücke
- findstr hat selbst eine zu rudimentäre Implementation um wirklich hilfreich zu sein.
- davon abgesehen, wäre es angebracht deine eigenen Versuche, seien sie auch noch so erfolglos, zu sehen um dir helfen zu können.
- mMn ist Batch ohne (nicht enthaltene) Zusatztools wenig geeignet. Besser wären j-/vbscript oder Powershell da die mit Multiline-RegEx umgehen können.
Für einen bescheidenen Anfang kann findstr aber die Datenmenge reduzieren:
1
findstr "Starting exitcode completed" test.log
hat "nur" noch 97 Zeilen
Gruß
LotPings
PS: zum experimentieren mit RegEx kannst du üben mit dem Editor NotePad++
Hey,
ich würde findstr nicht verwenden, das ist ein absolut seltsames Programm (klick auf den Link).
Hast du keine andere Möglichkeit, dein Problem zu lösen? Beispielsweise mit awk, das muss man nicht mal installieren sondern nur in das Programmverzeichnis kopieren.
Gruß, Endoro
ich würde findstr nicht verwenden, das ist ein absolut seltsames Programm (klick auf den Link).
Hast du keine andere Möglichkeit, dein Problem zu lösen? Beispielsweise mit awk, das muss man nicht mal installieren sondern nur in das Programmverzeichnis kopieren.
Gruß, Endoro

Hallo nochmal,
eigentlich wollte ich dir keine fertige Lösung servieren.
Aber ein paar Details haben mich gereizt das mit Powershell durchzuziehen weil ich dabei selbst etwas lernen konnte.
Zeile 2 an dein Verzeichnis anpassen und das Ganze mit der Endung .ps1 abspeichern und in der Powershell ausführen.
Der Code ist einigermassen kommentiert, sonst einfach fragen.
eigentlich wollte ich dir keine fertige Lösung servieren.
Aber ein paar Details haben mich gereizt das mit Powershell durchzuziehen weil ich dabei selbst etwas lernen konnte.
Zeile 2 an dein Verzeichnis anpassen und das Ganze mit der Endung .ps1 abspeichern und in der Powershell ausführen.
Der Code ist einigermassen kommentiert, sonst einfach fragen.
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
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
## LotPings 2016-11-20
$InFile = ".\Test.log"
## Tabelle für die Daten vorbereiten
$Table = New-Object system.Data.DataTable "Log"
$col = New-Object system.Data.DataColumn "Anwendung",([string])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "Verzeichnis",([string])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "Anfang",([datetime])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "Ende",([datetime])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "Exitcode",([int])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "Sekunden",([int])
$Table.columns.add($col)
$col = New-Object system.Data.DataColumn "AppLog",([string])
$Table.columns.add($col)
## RegEx für das splitten nach Apps vorbereiten
$Delimiter = '<![LOG[+++ Starting'
$Escaped = [regex]::Escape($Delimiter)
$Split = "(?!^)(?=$Escaped)"
## Mach es und anschliessend Schleife für jede App,
## 2. RegEx (-match) pickt die einzelnen Daten mit named capture groups heraus.
## Dann in die Felder der Tabelle eintragen, dabei wird aus dem
## (#!§$%*-amerikanischen) Datumsformat ein [datetime] gebaut.
(Get-Content $InFile -Raw) -split $Split |
ForEach-Object {
$_ -match '(?smi)^.*Starting Install enforcement for App DT "(?<Anwendung>.*)".*Contentpath - (?<Verzeichnis>[^,]+),.*time="(?<Anfangszeit>\d{2}:\d{2}:\d{2}).*date="(?<Anfangsdatum>\d{2}-\d{2}-\d{4})".*exitcode: (?<Exitcode>\d+).*completed \((?<Sekunden>\d+).*time="(?<Endezeit>\d{2}:\d{2}:\d{2}).*date="(?<Endedatum>\d{2}-\d{2}-\d{4})".*$'|out-null
$Row = $Table.Newrow()
$Row.Anwendung = $matches.Anwendung
$Row.Verzeichnis = $matches.Verzeichnis
$Row.Anfang = $([datetime]::ParseExact($($matches.Anfangsdatum+" "+$matches.Anfangszeit),"MM-dd-yyyy HH:mm:ss",$null))
$Row.Ende = $([datetime]::ParseExact($($matches.Endedatum+" "+$matches.Endezeit),"MM-dd-yyyy HH:mm:ss",$null))
$Row.Exitcode = $matches.Exitcode
$Row.Sekunden = $matches.Sekunden
$Row.AppLog = $_
$Table.Rows.Add($Row)
}
## hier kommt das Tüpfelchen, das Ergebnis wird in ein Gridview ausgegeben
## das eine Filtermöglichkeit hat. Einfach den Suchbegriff eintippen und fertig.
## Wegen der Notwendigkeit nach "EMET_4.1" suchen zu können ist der jeweilige
## Logeintrag nochmal enthalten, was die Tabelle etwas unübersichtlich macht.
## Wenn es stört, Zeile 40 mit ## auskommentieren.
$Table | Out-Gridview

Ja Du hattest Recht ich habe 2 Zeilenumbrüche drin gehabt
Das war im jpg deutlich zu erkennen.Ich habe heut krampfhaft versucht den Suchanfrage zu erweitern.
Die Tabelle dazu entsprechend zu erweitern und auch mit anderen Test-
daten zu befüllen habe ich hinbekommen.
Solange die Struktur der Daten dem Beispiel entspricht, sollte das auch kein Prblem seinDie Tabelle dazu entsprechend zu erweitern und auch mit anderen Test-
daten zu befüllen habe ich hinbekommen.
Doch irgendwie schein ich die Sytax aus Zeile 30 nicht richtig
verstanden zu haben, dachte zwischen den . . seien die neuen
Meinst du Zeile 32 aus meinem Script? Die RegEx oder kurz RE ist ziemlichverstanden zu haben, dachte zwischen den . . seien die neuen
komplex, und damit es passende matches gibt muss die _KOMPLETTE RE_
passen.
Eigentlich gibt die Zeile $_ -match ... ein Ergbnis True/False zurück -
das aber durch das |Out-Null am Ende ins digitale Nirwana befördert wird.
Nimm das mal raus und du wirst wahrscheinlich ein false erhalten weil die
veränderte RE nicht mehr passt und dann auch keine Matches mehr zurückgibt.
Eine gute Webseite um sich mit REs auseinander zu setzen ist
Regular Expressions Tutorial
Abfragen, oder sehe ich dies falsch? Denn jedesmal wenn ich es versuche
scheint die Schleife einfach immer nur den einen Datensatz zu lesen und
32 mal auszugeben.
Ohne deinen veränderten Code zu sehen ist es schwierig etwas dazu zu sagen.scheint die Schleife einfach immer nur den einen Datensatz zu lesen und
32 mal auszugeben.
Will die Abfrage noch so anpassen das ich nur die Nr. 200510.1 (zwischen
den _ habe) den Namen der Anwendung aus Command Line nach dem " und vor .vbs
Das sollte mit vorsichtiger Veränderung der RE gehen.den _ habe) den Namen der Anwendung aus Command Line nach dem " und vor .vbs
Habe damit etwas rumhespielt, aber je länger die RE wird desto eher gibt es fehler
Darum habe ich die eine große RE in mehrere kleiner aufgebrochen, und zwar mit
einem IF der nur Spalten-Einträge macht wenn auch was gefunden wurde.
Schicke dir das aber jetzt lieber per PM
Außerdem sollen keine doppelten Einträge vorhanden sein sondern nur der letzte
neuestes Datum)
Auch das geht, aber nicht innerhalb der Schleife sondern hinterher mit einemneuestes Datum)
Select aus der Tabelle
Wie kann man folgendes noch realisieren. Ein Menu für die selektierte GRID
selektiertes GRID -> rechte Maustaste - Menu -> uninstall - install - reinstall
AFAIK wird das, da das Gridview eine reine Ausgabe ist, nicht gehen.selektiertes GRID -> rechte Maustaste - Menu -> uninstall - install - reinstall
Aber man könnte dem Gridview noch eine lfd.Nr. mitgeben und später in dem
Script diese abfragen.
uninstall - soll dabei im ausgelesenen Verzeichnis cscript.exe scriptname.vbs /u ausführen
install - soll dabei im ausgelesenen Verzeichnis cscript.exe scriptname.vbs /i ausführen
reinstall - soll dabei im ausgelesenen Verzeichnis cscript.exe scriptname.vbs /u und danach cscript.exe scriptname.vbs /i
Auch das geht alles, aber wir wären jetzt schon bei einigen hundert Euroneninstall - soll dabei im ausgelesenen Verzeichnis cscript.exe scriptname.vbs /i ausführen
reinstall - soll dabei im ausgelesenen Verzeichnis cscript.exe scriptname.vbs /u und danach cscript.exe scriptname.vbs /i
Honorar
Mir reichts für Heute.
LotPings