-
Notifications
You must be signed in to change notification settings - Fork 600
/
Windows_2k.log
2000 lines (2000 loc) · 279 KB
/
Windows_2k.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2016-09-28 04:30:30, Info CBS Loaded Servicing Stack v6.1.7601.23505 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.23505_none_681aa442f6fed7f0\cbscore.dll
2016-09-28 04:30:31, Info CSI 00000001@2016/9/27:20:30:31.455 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed806eb5d @0x7fef9fb9b6d @0x7fef9f8358f @0xff83e97c @0xff83d799 @0xff83db2f)
2016-09-28 04:30:31, Info CSI 00000002@2016/9/27:20:30:31.458 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed806eb5d @0x7fefa006ade @0x7fef9fd2984 @0x7fef9f83665 @0xff83e97c @0xff83d799)
2016-09-28 04:30:31, Info CSI 00000003@2016/9/27:20:30:31.458 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed806eb5d @0x7fefa1c8728 @0x7fefa1c8856 @0xff83e474 @0xff83d7de @0xff83db2f)
2016-09-28 04:30:31, Info CBS Ending TrustedInstaller initialization.
2016-09-28 04:30:31, Info CBS Starting the TrustedInstaller main loop.
2016-09-28 04:30:31, Info CBS TrustedInstaller service starts successfully.
2016-09-28 04:30:31, Info CBS SQM: Initializing online with Windows opt-in: False
2016-09-28 04:30:31, Info CBS SQM: Cleaning up report files older than 10 days.
2016-09-28 04:30:31, Info CBS SQM: Requesting upload of all unsent reports.
2016-09-28 04:30:31, Info CBS SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT = 0x80004005 - E_FAIL]
2016-09-28 04:30:31, Info CBS SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
2016-09-28 04:30:31, Info CBS SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6
2016-09-28 04:30:31, Info CBS SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
2016-09-28 04:30:31, Info CBS No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still pending.
2016-09-28 04:30:31, Info CBS NonStart: Checking to ensure startup processing was not required.
2016-09-28 04:30:31, Info CSI 00000004 IAdvancedInstallerAwareStore_ResolvePendingTransactions (call 1) (flags = 00000004, progress = NULL, phase = 0, pdwDisposition = @0xb6fd90
2016-09-28 04:30:31, Info CSI 00000005 Creating NT transaction (seq 1), objectname [6]"(null)"
2016-09-28 04:30:31, Info CSI 00000006 Created NT transaction (seq 1) result 0x00000000, handle @0x214
2016-09-28 04:30:31, Info CSI 00000007@2016/9/27:20:30:31.462 CSI perf trace:
2016-09-28 04:30:31, Info CBS NonStart: Success, startup processing not required as expected.
2016-09-28 04:30:31, Info CBS Startup processing thread terminated normally
2016-09-28 04:30:31, Info CSI 00000008 CSI Store 4991456 (0x00000000004c29e0) initialized
2016-09-28 04:30:31, Info CBS Session: 30546173_4261722401 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:31, Info CBS Session: 30546173_4262462443 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:31, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:31, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Session: 30546173_4267072707 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:32, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:32, Info CBS Session: 30546173_4268042763 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:32, Info CBS Session: 30546173_4271022933 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:32, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:32, Info CBS Session: 30546173_4275933214 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-28 04:30:33, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-28 04:30:33, Info CBS Session: 30546173_4280593480 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280603481 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280613482 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280613483 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280623482 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280633483 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4280633484 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:33, Info CBS Session: 30546173_4281313522 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Session: 30546173_4285113739 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Read out cached package applicability for package: Package_for_KB3121255~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:33, Info CBS Session: 30546173_4286503818 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Read out cached package applicability for package: Package_for_KB2656356~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:33, Info CBS Session: 30546173_4286853838 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Read out cached package applicability for package: Package_for_KB3108664~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:33, Info CBS Session: 30546173_4286873840 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:33, Info CBS Read out cached package applicability for package: Package_for_KB3115858~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546173_4289083966 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3127220~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546173_4289704001 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3060716~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546173_4294144255 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3006137~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546173_4294174257 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3067903~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546174_187017 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3086255~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546174_857056 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3146706~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546174_1497092 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3182203~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546174_1767108 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:34, Info CBS Read out cached package applicability for package: Package_for_KB3075226~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:34, Info CBS Session: 30546174_2037123 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3185319~31bf3856ad364e35~amd64~~11.2.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_2217133 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Session: 30546174_2817168 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3033929~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_8087469 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB2978742~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_9517551 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3177186~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_9817568 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3055642~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_9927574 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3078601~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_10127586 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3147071~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_10517608 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB3019978~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:35, Info CBS Session: 30546174_10537609 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:35, Info CBS Read out cached package applicability for package: Package_for_KB2563227~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:35, Info CBS Session: 30546174_11037638 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3126587~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_17007979 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2789645~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_17668017 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3138901~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_17818026 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2607047~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:36, Info CBS Session: 30546174_18178046 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Session: 30546174_18398059 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3011780~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20238164 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3170455~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20328169 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2891804~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20448176 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3156017~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20458177 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3084135~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20518180 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2560656~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_20798196 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3184471~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:36, Info CBS Session: 30546174_21498236 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3146963~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_21518237 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2918077~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_21788253 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2716513~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:36, Info CBS Session: 30546174_21808254 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2489256~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:36, Info CBS Session: 30546174_21868257 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3138962~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_21888258 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2552343~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_21968263 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB3059317~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_22008265 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:36, Info CBS Read out cached package applicability for package: Package_for_KB2973201~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:36, Info CBS Session: 30546174_22048268 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3072305~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_22448291 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3078667~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_22538296 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3020369~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_22828312 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2943357~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_23648359 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3168965~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_23668360 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2620704~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_23938376 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Microsoft-Windows-PlatformUpdate-Win7-SRV08R2-Package-TopLevel~31bf3856ad364e35~amd64~~7.1.7601.16492, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_24168389 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2763523~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_25138444 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3075220~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:37, Info CBS Session: 30546174_25988493 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2813347~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27448577 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3080446~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27518581 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2515325~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27548582 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2957189~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27568583 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2718704~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27758594 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB2479943~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_27818598 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3138612~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_28288625 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Microsoft-Hyper-V-Integration-Services-Package~31bf3856ad364e35~amd64~~6.3.9600.17681, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:37, Info CBS Session: 30546174_28528638 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:37, Info CBS Read out cached package applicability for package: Package_for_KB3107998~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:37, Info CBS Session: 30546174_30478750 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB3071756~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_35199020 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB2840631~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_35469035 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB2631813~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_35509038 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB2640148~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_35659046 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB3093513~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_35689048 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB2894844~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_36019067 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB3108670~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_40939348 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:38, Info CBS Read out cached package applicability for package: Package_for_KB2547666~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:38, Info CBS Session: 30546174_41309369 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2798162~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_43049469 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2574819~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_43479493 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Microsoft-Windows-RDP-BlueIP-Package-TopLevel~31bf3856ad364e35~amd64~~7.2.7601.16415, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_43599500 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2857650~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_44439548 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3118401~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_44469550 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2585542~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_44629559 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2931356~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_45239594 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2900986~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_45309598 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2985461~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_46439663 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3092601~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_46879688 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2836942~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_46979694 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2937610~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_48029754 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3035126~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_48659790 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3076895~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_48769796 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3021674~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_48809798 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2919469~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_49059813 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2823180~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:39, Info CBS Session: 30546174_49089814 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2809215~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:39, Info CBS Session: 30546174_49109815 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Failed to internally open package. [HRESULT = 0x800f0805 - CBS_E_INVALID_PACKAGE]
2016-09-28 04:30:39, Info CBS Session: 30546174_49119816 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2809900~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:39, Info CBS Session: 30546174_49199821 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3150220~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_49409833 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3175024~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_49899861 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB3126446~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_50419890 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:39, Info CBS Read out cached package applicability for package: Package_for_KB2968294~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:39, Info CBS Session: 30546174_50799912 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:40, Info CBS Read out cached package applicability for package: Package_for_KB3080079~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:42, Info CBS Session: 30546174_79961580 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:42, Info CBS Read out cached package applicability for package: Package_for_KB2868626~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_84291828 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2929733~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_84441836 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2893294~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_84491839 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3145739~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_84891862 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2972211~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_85221881 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB947821~31bf3856ad364e35~amd64~~6.1.34.0, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_85241882 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3020370~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_85811915 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3003743~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_88182050 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3020387~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_88262055 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2884256~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_88342059 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3163245~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_88462066 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2660075~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_88482067 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3022777~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_88742082 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3161561~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89042099 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2800095~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89092102 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2818604~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_89122104 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2570947~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89272113 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3035132~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89322115 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2972100~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89562129 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2966583~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_89962152 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2685811~31bf3856ad364e35~amd64~~6.1.1.11, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_90352174 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3110329~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_90632190 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2545698~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_90692194 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3124280~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_90722196 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Microsoft-Hyper-V-Integration-Services-Package~31bf3856ad364e35~amd64~~6.3.9600.17388, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_90802200 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Session: 30546174_90832202 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2676562~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_90912206 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2970228~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91002212 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2512715~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_91262226 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2965788~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91282228 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3030377~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91382233 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3021917~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91422236 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2853952~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91472238 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2706045~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:43, Info CBS Session: 30546174_91532242 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2510531~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91592245 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2847927~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_91672250 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB2604115~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:43, Info CBS Session: 30546174_92052272 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:43, Info CBS Read out cached package applicability for package: Package_for_KB3013531~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_92302286 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2893519~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_93492354 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2703157~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:44, Info CBS Session: 30546174_93642363 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3133977~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_94042385 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3109094~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_94182393 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2506212~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_94222396 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3076949~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_94392405 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Session: 30546174_94722424 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2871997~31bf3856ad364e35~amd64~~6.1.2.5, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_97232568 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3164035~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_97282571 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Session: 30546174_97402578 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2574819~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_97982611 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Microsoft-Windows-RDP-WinIP-Package-TopLevel~31bf3856ad364e35~amd64~~7.1.7601.16398, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_98162621 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2843630~31bf3856ad364e35~amd64~~6.1.3.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_99082674 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2862330~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_99222682 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2834140~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:44, Info CBS Session: 30546174_99252683 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Session: 30546174_99402692 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2726535~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_100742769 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Session: 30546174_100772770 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3046269~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_100922779 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3139398~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_100952781 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2719857~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_100982782 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2603229~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101102789 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3109560~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101172793 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2807986~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101232797 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3135983~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101272799 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2667402~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101322802 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2791765~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101632820 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Microsoft-Hyper-V-Integration-Services-Package~31bf3856ad364e35~amd64~~6.3.9600.18080, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:44, Info CBS Session: 30546174_101752826 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3139940~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101792829 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2719033~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:44, Info CBS Session: 30546174_101842832 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB3109103~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_101902835 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:44, Info CBS Read out cached package applicability for package: Package_for_KB2864202~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:44, Info CBS Session: 30546174_102002841 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3074543~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_102442866 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3040272~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_103902949 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3142042~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_104472982 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3042058~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_106683108 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3023215~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_106973125 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3108381~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107003127 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2868038~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107053130 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2750841~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107333146 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3185911~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107363147 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3138910~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107383149 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2862335~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_107523157 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2908783~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_108313202 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB3020393~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 64, CurrentState:0
2016-09-28 04:30:45, Info CBS Session: 30546174_108353204 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2772930~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:45, Info CBS Session: 30546174_108613219 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2621146~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:45, Info CBS Session: 30546174_108633220 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2601626~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:45, Info CBS Session: 30546174_108683223 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2923545~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_108903235 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2509553~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_109123248 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2758857~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_110243312 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2846960~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:45, Info CBS Session: 30546174_110453324 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:45, Info CBS Read out cached package applicability for package: Package_for_KB2770660~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:47, Info CBS Session: 30546174_130874492 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:47, Info CBS Read out cached package applicability for package: Package_for_KB3123479~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:47, Info CBS Session: 30546174_131324518 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3072630~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_132374578 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3179573~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_132424581 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Microsoft-Hyper-V-Integration-Services-Package~31bf3856ad364e35~amd64~~6.3.9600.17903, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:48, Info CBS Session: 30546174_132514586 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB2952664~31bf3856ad364e35~amd64~~6.1.19.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_132544588 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3149090~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_132944611 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3178034~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_132984613 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3097989~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_133134621 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB2853587~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:48, Info CBS Session: 30546174_137784887 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB2732059~31bf3856ad364e35~amd64~~6.1.5.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_138284916 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:48, Info CBS Read out cached package applicability for package: Package_for_KB3164033~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:48, Info CBS Session: 30546174_138824947 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3080149~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_143845234 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3046017~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_143875236 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3067904~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:49, Info CBS Session: 30546174_143895237 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2912390~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_144035245 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2632503~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:49, Info CBS Session: 30546174_144085248 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2991963~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_144115249 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2911501~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_144435268 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2984972~31bf3856ad364e35~amd64~~6.1.1.4, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_147195426 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3121461~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_147205426 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3161958~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_147585448 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2888049~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_147765458 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2773072~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_149225542 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2579686~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_149265544 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB3075222~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:49, Info CBS Session: 30546174_149285545 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Microsoft-Windows-Embedded-EmbeddedLockdown-Package-TopLevel~31bf3856ad364e35~amd64~~7.1.7601.16511, ApplicableState: 112, CurrentState:0
2016-09-28 04:30:49, Info CBS Session: 30546174_149295546 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2544893~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_149325547 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2685939~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:49, Info CBS Session: 30546174_149405552 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:49, Info CBS Read out cached package applicability for package: Package_for_KB2729452~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_154395837 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3020388~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_154615850 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2742599~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_155085877 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3181988~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_155245886 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2685813~31bf3856ad364e35~amd64~~6.1.1.11, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_155605907 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2690533~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_155755915 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3075249~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_156625965 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3156016~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_156695969 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3139914~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_156715970 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2621440~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_156785974 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3054476~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_156825976 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3122648~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_157005987 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3042553~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_157105992 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2732487~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_157135994 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3005607~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_157145995 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Session: 30546174_157205998 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB3184143~31bf3856ad364e35~amd64~~6.1.1.4, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_157616022 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2992611~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_159636137 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2727528~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:50, Info CBS Session: 30546174_159666139 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:50, Info CBS Read out cached package applicability for package: Package_for_KB2506014~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_164936440 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2868116~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_165556476 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2861698~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_165596478 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3092627~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_165696484 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2984976~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_165966499 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3102429~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_166396524 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3005788~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:51, Info CBS Session: 30546174_167286575 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3006121~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_167476586 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2813430~31bf3856ad364e35~amd64~~6.1.1.4, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169016674 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3033889~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169066677 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3037574~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169296690 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2977292~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169316691 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3161949~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169366694 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3006625~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169406696 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3159398~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169616708 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3035017~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:0
2016-09-28 04:30:51, Info CBS Session: 30546174_169636709 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2993651~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169666711 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3184122~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169696713 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2786081~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169726714 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2761217~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_169836721 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB3142024~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_170026732 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2835174~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:51, Info CBS Session: 30546174_170246744 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2808679~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_171486815 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2552343~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_171536818 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2532531~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:51, Info CBS Session: 30546174_171646824 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:51, Info CBS Read out cached package applicability for package: Package_for_KB2973112~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172076849 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2653956~31bf3856ad364e35~amd64~~6.1.1.5, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172126852 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3101722~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172246858 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3155178~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172276860 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2978120~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172546876 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3140245~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172566877 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3010788~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_172676883 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB982018~31bf3856ad364e35~amd64~~6.1.3.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_173216914 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2705219~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_173266917 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Session: 30546174_173636938 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3004375~31bf3856ad364e35~amd64~~6.1.3.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_176877123 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3138378~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_176887124 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2506928~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_176917126 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2799926~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_176947127 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2491683~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_176967128 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2654428~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_177007131 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3004361~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_177047133 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3108371~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_177107136 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2892074~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_177417154 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2973351~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_179617280 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2729094~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_179737287 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2511455~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_179777289 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2564958~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_179827292 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3045685~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_179897296 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2836943~31bf3856ad364e35~amd64~~6.1.2.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_180077306 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB2698365~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_180217314 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Session: 30546174_180377324 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:52, Info CBS Read out cached package applicability for package: Package_for_KB3031432~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:52, Info CBS Session: 30546174_181797405 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB3004375~31bf3856ad364e35~amd64~~6.1.3.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_184807577 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB2928120~31bf3856ad364e35~amd64~~6.1.1.2, ApplicableState: 0, CurrentState:0
2016-09-28 04:30:53, Info CBS Session: 30546174_185287604 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB3087039~31bf3856ad364e35~amd64~~6.1.1.4, ApplicableState: 80, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_185317606 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB2736422~31bf3856ad364e35~amd64~~6.1.1.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_185407611 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB3156019~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_185487616 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_RollupFix~31bf3856ad364e35~amd64~~7601.23545.1.4, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_186107651 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB2862152~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_186137653 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB2852386~31bf3856ad364e35~amd64~~6.1.1.3, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_186257660 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB2647753~31bf3856ad364e35~amd64~~6.1.4.0, ApplicableState: 112, CurrentState:112
2016-09-28 04:30:53, Info CBS Session: 30546174_186297662 initialized by client WindowsUpdateAgent.
2016-09-28 04:30:53, Info CBS Read out cached package applicability for package: Package_for_KB3177467~31bf3856ad364e35~amd64~~6.1.1.1, ApplicableState: 112, CurrentState:112
2016-09-28 04:32:17, Info CBS Failed to create backup log cab. [HRESULT = 0x80070001 - ERROR_INVALID_FUNCTION]
2016-09-28 04:40:53, Info CBS Reboot mark refs incremented to: 1
2016-09-28 04:40:53, Info CBS Scavenge: Starts
2016-09-28 04:40:53, Info CSI 00000009@2016/9/27:20:40:53.744 CSI Transaction @0x47e9e0 initialized for deployment engine {d16d444c-56d8-11d5-882d-0080c847b195} with flags 00000002 and client id [10]"TI6.0_0:0/"
2016-09-28 04:40:53, Info CBS Scavenge: Begin CSI Store
2016-09-28 04:40:54, Info CSI 0000000a Performing 1 operations; 1 are not lock/unlock and follow:
2016-09-28 04:40:54, Info CSI 0000000b Store coherency cookie matches last scavenge cookie, skipping scavenge.
2016-09-28 04:40:54, Info CSI 0000000c ICSITransaction::Commit calling IStorePendingTransaction::Apply - coldpatching=FALSE applyflags=7
2016-09-28 04:40:54, Info CSI 0000000d Creating NT transaction (seq 2), objectname [6]"(null)"
2016-09-28 04:40:54, Info CSI 0000000e Created NT transaction (seq 2) result 0x00000000, handle @0xb8
2016-09-28 04:40:54, Info CSI 0000000f@2016/9/27:20:40:54.786 CSI perf trace:
2016-09-28 04:40:54, Info CBS Scavenge: Completed, disposition: 0X1
2016-09-28 04:40:54, Info CSI 00000010@2016/9/27:20:40:54.787 CSI Transaction @0x47e9e0 destroyed
2016-09-28 04:40:55, Info CBS Reboot mark refs: 0
2016-09-28 04:40:55, Info CBS Idle processing thread terminated normally
2016-09-28 04:40:55, Info CBS Ending the TrustedInstaller main loop.
2016-09-28 04:40:55, Info CBS Starting TrustedInstaller finalization.
2016-09-28 04:40:55, Info CBS Ending TrustedInstaller finalization.
2016-09-29 00:00:44, Info CBS Starting TrustedInstaller initialization.
2016-09-29 00:00:44, Info CBS Loaded Servicing Stack v6.1.7601.23505 with Core: C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_6.1.7601.23505_none_681aa442f6fed7f0\cbscore.dll
2016-09-29 00:00:46, Info CSI 00000001@2016/9/28:16:00:46.160 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed875eb5d @0x7fee5c39b6d @0x7fee5c0358f @0xffeee97c @0xffeed799 @0xffeedb2f)
2016-09-29 00:00:46, Info CSI 00000002@2016/9/28:16:00:46.200 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed875eb5d @0x7fee5c86ade @0x7fee5c52984 @0x7fee5c03665 @0xffeee97c @0xffeed799)
2016-09-29 00:00:46, Info CSI 00000003@2016/9/28:16:00:46.213 WcpInitialize (wcp.dll version 0.0.0.6) called (stack @0x7fed875eb5d @0x7fef9d98728 @0x7fef9d98856 @0xffeee474 @0xffeed7de @0xffeedb2f)
2016-09-29 00:00:46, Info CBS Ending TrustedInstaller initialization.
2016-09-29 00:00:46, Info CBS Starting the TrustedInstaller main loop.
2016-09-29 00:00:46, Info CBS TrustedInstaller service starts successfully.
2016-09-29 00:00:46, Info CBS SQM: Initializing online with Windows opt-in: False
2016-09-29 00:00:46, Info CBS SQM: Cleaning up report files older than 10 days.
2016-09-29 00:00:46, Info CBS SQM: Requesting upload of all unsent reports.
2016-09-29 00:00:46, Info CBS SQM: Failed to start upload with file pattern: C:\Windows\servicing\sqm\*_std.sqm, flags: 0x2 [HRESULT = 0x80004005 - E_FAIL]
2016-09-29 00:00:46, Info CBS SQM: Failed to start standard sample upload. [HRESULT = 0x80004005 - E_FAIL]
2016-09-29 00:00:46, Info CBS SQM: Queued 0 file(s) for upload with pattern: C:\Windows\servicing\sqm\*_all.sqm, flags: 0x6
2016-09-29 00:00:46, Info CBS SQM: Warning: Failed to upload all unsent reports. [HRESULT = 0x80004005 - E_FAIL]
2016-09-29 00:00:46, Info CBS No startup processing required, TrustedInstaller service was not set as autostart, or else a reboot is still pending.
2016-09-29 00:00:46, Info CBS NonStart: Checking to ensure startup processing was not required.
2016-09-29 00:00:46, Info CSI 00000004 IAdvancedInstallerAwareStore_ResolvePendingTransactions (call 1) (flags = 00000004, progress = NULL, phase = 0, pdwDisposition = @0x116fa70
2016-09-29 00:00:46, Info CSI 00000005 Creating NT transaction (seq 1), objectname [6]"(null)"
2016-09-29 00:00:46, Info CSI 00000006 Created NT transaction (seq 1) result 0x00000000, handle @0x218
2016-09-29 00:00:46, Info CSI 00000007@2016/9/28:16:00:46.260 CSI perf trace:
2016-09-29 00:00:46, Info CBS NonStart: Success, startup processing not required as expected.
2016-09-29 00:00:46, Info CBS Startup processing thread terminated normally
2016-09-29 00:00:46, Info CBS Loading offline registry hive: SOFTWARE, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/SOFTWARE' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\SOFTWARE'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: SYSTEM, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/SYSTEM' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\SYSTEM'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: SECURITY, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/SECURITY' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\SECURITY'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: SAM, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/SAM' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\SAM'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: COMPONENTS, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/COMPONENTS' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\COMPONENTS'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: DEFAULT, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/System32/config/DEFAULT' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\System32\config\DEFAULT'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: ntuser.dat, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Users/default/ntuser.dat' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Users\default\ntuser.dat'.
2016-09-29 00:00:46, Info CBS Loading offline registry hive: schema.dat, into registry key '{bf1a281b-ad7b-4476-ac95-f47682990ce7}GLOBALROOT/Device/HarddiskVolumeShadowCopy2/Windows/system32/smi/store/Machine/schema.dat' from path '\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy2\Windows\system32\smi\store\Machine\schema.dat'.
2016-09-29 00:00:46, Info CBS Offline image is: read-only
2016-09-29 00:00:46, Info CBS Disabling manifest caching, because the image is not writeable.
2016-09-29 00:00:46, Info CSI 00000008@2016/9/28:16:00:46.635 PopulateComponentFamiliesKey - Begin
2016-09-29 00:01:03, Info CSI 00000009@2016/9/28:16:01:03.072 PopulateComponentFamiliesKey - End
2016-09-29 00:01:03, Info CSI 0000000a CSI Store 17159600 (0x000000000105d5b0) initialized
2016-09-29 00:01:03, Info CBS Session: 11152_142416105 initialized by client SPP.
2016-09-29 00:01:46, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-29 00:01:46, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-29 00:01:46, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Warning: Unrecognized packageExtended attribute.
2016-09-29 00:01:46, Info CBS Expecting attribute name [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Failed to get next element [HRESULT = 0x800f080d - CBS_E_MANIFEST_INVALID_ITEM]
2016-09-29 00:01:46, Info CBS Warning: Unrecognized packageExtended attribute.