shooan

Server 2012R2 kontaktieren den WSUS und ist sichtbar, jedoch erstelen Sie keine Berichte

Hallo,

Ich habe noch ein paar alte Server 2012 R2 im Netz.
Davon will einer nicht mehr mit dem WSUS Sprechen.

Zuerst einmal wurde der Server natürlich neu gestartet. Das brachte keine Verbesserung.
Dann wurden die Dienste des Windows Updates gestoppt und der Verzeichnis SoftwareDistribution gelöscht.

Neu erstelt und angelegt nach dem Dienststart wurde es.

Server meldet sich nicht bzw. Zog keine Updates.

Als letzen Schritt den Server mal aus den Wsus gelöscht und neu gestartet.
Er Meldet sich nun aber es wird kein Bericht generiert.

Habe auch schon 2 Tage lang gewartet keine verbesserung /Report und /detectnow mehrfach ausgeführt leider keinen erfolg.

Dann mal in das Log geschaut und ja da sind einige Fehler drinnen.

Anbei mal das 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
2021-12-17	13:28:52:805	1020	4498	Misc	===========  Logging initialized (build: 7.9.9600.19915, tz: +0100)  ===========
2021-12-17	13:28:52:805	1020	4498	Misc	  = Process: C:\Windows\system32\svchost.exe
2021-12-17	13:28:52:805	1020	4498	Misc	  = Module: c:\windows\system32\wuaueng.dll
2021-12-17	13:28:52:805	1020	4498	Service	*************
2021-12-17	13:28:52:805	1020	4498	Service	** START **  Service: Service startup
2021-12-17	13:28:52:805	1020	4498	Service	*********
2021-12-17	13:28:52:821	1020	4498	IdleTmr	Non-AoAc machine.  Aoac operations will be ignored.
2021-12-17	13:28:52:821	1020	4498	Agent	  * WU client version 7.9.9600.19915
2021-12-17	13:28:52:821	1020	4498	Agent	WARNING: SleepStudyTracker: Machine is non-AOAC. Sleep study tracker disabled.
2021-12-17	13:28:52:821	1020	4498	Agent	  * Base directory: C:\Windows\SoftwareDistribution
2021-12-17	13:28:52:821	1020	4498	Agent	  * Access type: No proxy
2021-12-17	13:28:52:821	1020	4498	Service	UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2021-12-17	13:28:52:821	1020	4498	Service	UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
2021-12-17	13:28:52:821	1020	4498	Agent	  * Network state: Connected
2021-12-17	13:28:52:821	1020	4498	Service	UpdateNetworkState Ipv6, cNetworkInterfaces = 0.
2021-12-17	13:28:52:821	1020	4498	Service	UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
2021-12-17	13:28:52:993	1020	4498	DtaStor	Default service for AU is {00000000-0000-0000-0000-000000000000}
2021-12-17	13:28:53:008	1020	4498	DtaStor	Default service for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
2021-12-17	13:28:53:008	1020	4498	DtaStor	Data store successfully created
2021-12-17	13:28:53:008	1020	4498	Agent	WARNING: could not get the auth file name 0x80070002
2021-12-17	13:28:53:008	1020	4498	Agent	WARNING: Service Recovery: Attempting to add pending registration for service 117cab2d-82b1-4b5a-a08c-4d62dbee7782 to the data store
2021-12-17	13:28:53:008	1020	4498	Agent	***********  Agent: Initializing global settings cache  ***********
2021-12-17	13:28:53:008	1020	4498	Agent	  * Endpoint Provider: 00000000-0000-0000-0000-000000000000
2021-12-17	13:28:53:008	1020	4498	Agent	  * WSUS server: http://WSUS02:8530
2021-12-17	13:28:53:008	1020	4498	Agent	  * WSUS status server: http://WSUS02:8530
2021-12-17	13:28:53:008	1020	4498	Agent	  * Target group: Server
2021-12-17	13:28:53:008	1020	4498	Agent	  * Windows Update access disabled: No
2021-12-17	13:28:53:008	1020	4498	Misc	WARNING: Network Cost is assumed to be not supported as something failed with trying to get handles to wcmapi.dll
2021-12-17	13:28:53:040	1020	4498	WuTask	WuTaskManager delay initialize completed successfully..
2021-12-17	13:28:53:040	1020	4498	Report	WARNING: Failed to initialize event uploader for new server {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with hr = 80248014.
2021-12-17	13:28:53:040	1020	4498	Report	CWERReporter::Init succeeded
2021-12-17	13:28:53:040	1020	4498	Agent	***********  Agent: Initializing Windows Update Agent  ***********
2021-12-17	13:28:53:055	1020	4498	DnldMgr	Download manager restoring 0 downloads
2021-12-17	13:28:53:055	1020	4498	AU	Adding timer: 
2021-12-17	13:28:53:055	1020	4498	AU	    Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2021-12-18 12:28:53, not idle-only, not network-only
2021-12-17	13:28:53:055	1020	4498	AU	###########  AU: Initializing Automatic Updates  ###########
2021-12-17	13:28:53:055	1020	4498	AU	AU setting next detection timeout to 2021-12-17 12:28:53
2021-12-17	13:28:53:055	1020	4498	AU	AIR Mode is disabled
2021-12-17	13:28:53:055	1020	4498	AU	  # Policy Driven Provider: http:{{comment_single_line_double_slash:0}}
2021-12-17	13:28:53:055	1020	4498	AU	  # Detection frequency: 2
2021-12-17	13:28:53:055	1020	4498	AU	  # Target group: Server
2021-12-17	13:28:53:055	1020	4498	AU	  # Approval type: Pre-install notify (Policy)
2021-12-17	13:28:53:055	1020	4498	AU	  # Auto-install minor updates: No (User preference)
2021-12-17	13:28:53:055	1020	4498	AU	  # Will interact with non-admins (Non-admins are elevated (User preference))
2021-12-17	13:28:53:055	1020	4498	AU	WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
2021-12-17	13:28:53:055	1020	4498	AU	WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2021-12-17	13:28:53:055	1020	4498	AU	Adding timer: 
2021-12-17	13:28:53:055	1020	4498	AU	    Timer: CF1ABEC6-7887-4964-BB93-B2E21B31CEC1, Expires 2021-12-18 12:28:53, not idle-only, not network-only
2021-12-17	13:28:53:055	1020	4498	AU	AU finished delayed initialization
2021-12-17	13:28:53:055	1020	4498	AU	Currently AUX is enabled - so not show any WU Upgrade notifications.
2021-12-17	13:28:53:055	1020	4498	AU	WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2021-12-17	13:28:53:055	1020	4498	AU	WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2021-12-17	13:28:53:071	1020	4498	AU	Adding timer: 
2021-12-17	13:28:53:071	1020	4498	AU	    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2021-12-17 12:28:53, not idle-only, not network-only
2021-12-17	13:28:53:071	1020	4498	AU	#############
2021-12-17	13:28:53:071	1020	5798	DnldMgr	Asking handlers to reconcile their sandboxes
2021-12-17	13:28:53:071	1020	4498	AU	## START ##  AU: Search for updates
2021-12-17	13:28:53:102	1020	4498	AU	#########
2021-12-17	13:28:53:102	1020	4498	SLS	Retrieving SLS response from server...
2021-12-17	13:28:53:102	1020	4498	SLS	Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=801&L=de-DE&P=&PT=0x8&WUA=7.9.9600.19915
2021-12-17	13:28:54:024	1020	4498	Misc	Validating signature for C:\Windows\SoftwareDistribution\SLS\9482F4B4-E343-43B6-B170-9A65BC822C77\sls.cab with dwProvFlags 0x00000080:
2021-12-17	13:28:54:040	1020	4498	Misc	 Microsoft signed: NA
2021-12-17	13:28:54:040	1020	4498	Misc	 Infrastructure signed: Yes
2021-12-17	13:28:54:040	1020	4498	Misc	Validating signature for C:\Windows\SoftwareDistribution\SLS\9482F4B4-E343-43B6-B170-9A65BC822C77\TMPDE27.tmp with dwProvFlags 0x00000080:
2021-12-17	13:28:54:040	1020	4498	Misc	 Microsoft signed: NA
2021-12-17	13:28:54:040	1020	4498	Misc	 Infrastructure signed: Yes
2021-12-17	13:28:54:040	1020	4498	EP	Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "117cab2d-82b1-4b5a-a08c-4d62dbee7782"  
2021-12-17	13:28:54:055	1020	4498	SLS	Retrieving SLS response from server...
2021-12-17	13:28:54:055	1020	4498	SLS	Making request with URL HTTPS://sls.update.microsoft.com/SLS/{117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}/x64/6.3.9600.0/0?CH=801&L=de-DE&P=&PT=0x8&WUA=7.9.9600.19915&AM=0&SCV=788
2021-12-17	13:28:54:227	1020	4498	Misc	Validating signature for C:\Windows\SoftwareDistribution\SLS\117CAB2D-82B1-4B5A-A08C-4D62DBEE7782\sls.cab with dwProvFlags 0x00000080:
2021-12-17	13:28:54:243	1020	4498	Misc	 Microsoft signed: NA
2021-12-17	13:28:54:243	1020	4498	Misc	 Infrastructure signed: Yes
2021-12-17	13:28:54:243	1020	4498	Misc	Validating signature for C:\Windows\SoftwareDistribution\SLS\117CAB2D-82B1-4B5A-A08C-4D62DBEE7782\TMPDEF3.tmp with dwProvFlags 0x00000080:
2021-12-17	13:28:54:243	1020	4498	Misc	 Microsoft signed: NA
2021-12-17	13:28:54:243	1020	4498	Misc	 Infrastructure signed: Yes
2021-12-17	13:28:54:243	1020	4498	DtaStor	Default service for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
2021-12-17	13:28:54:243	1020	4498	Agent	Caller Service Recovery successfully opted in to service 117cab2d-82b1-4b5a-a08c-4d62dbee7782
2021-12-17	13:28:54:243	1020	4498	AU	Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-download notify} added to AU services list
2021-12-17	13:28:54:243	1020	4498	AU	Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-download notify} added to AU services list
2021-12-17	13:28:54:243	1020	4498	IdleTmr	WU operation (CSearchCall::Init ID 1) started; operation # 7; does use network; is at background priority
2021-12-17	13:28:54:290	1020	4498	Report	***********  Report: Initializing static reporting data  ***********
2021-12-17	13:28:54:290	1020	4498	Report	  * OS Version = 6.3.9600.0.0.197008
2021-12-17	13:28:54:290	1020	4498	Report	  * OS Product Type = 0x00000008
2021-12-17	13:28:54:305	1020	4498	Report	  * Computer Brand = VMware, Inc.
2021-12-17	13:28:54:305	1020	4498	Report	  * Computer Model = VMware7,1
2021-12-17	13:28:54:305	1020	4498	Report	  * Platform Role = 1
2021-12-17	13:28:54:305	1020	4498	Report	  * AlwaysOn/AlwaysConnected (AOAC) = 0
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Revision = VMW71.00V.16460286.B64.2006250725
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Name = VMW71.00V.16460286.B64.2006250725
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Release Date = 2020-06-25T00:00:00
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Sku Number unavailable.
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Vendor = VMware, Inc.
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Family unavailable.
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Major Release = 255
2021-12-17	13:28:54:305	1020	4498	Report	  * Bios Minor Release = 255
2021-12-17	13:28:54:305	1020	4498	Report	  * Locale ID = 1031
2021-12-17	13:28:54:305	1020	4498	Handler	Calculating current update level for this session
2021-12-17	13:30:54:306	1020	4498	Handler	FATAL: UH: 0x80080005: StartSession failed in CCbs::CalculateCUL
2021-12-17	13:30:54:306	1020	4498	Handler	Done calculating current update level for this session
2021-12-17	13:30:54:306	1020	4498	Report	WARNING: Failed to get current update level, hr=80080005.
2021-12-17	13:30:54:821	1020	4498	Agent	*** START ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 1]
2021-12-17	13:30:54:821	1020	4498	AU	<<## SUBMITTED ## AU: Search for updates  [CallId = {8CBC75E2-D658-46CF-9B56-53EDC43102F9} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2021-12-17	13:30:54:821	1020	4498	Agent	SkipSelfUpdateCheck search flag set for serverId: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782
2021-12-17	13:30:54:821	1020	4498	IdleTmr	WU operation (CSearchCall::Init ID 2) started; operation # 9; does use network; is at background priority
2021-12-17	13:30:54:821	1020	4498	Agent	*** START ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 2]
2021-12-17	13:30:54:821	1020	4498	AU	<<## SUBMITTED ## AU: Search for updates  [CallId = {884CF008-56CC-4A85-98BD-544A1D64BD50} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
2021-12-17	13:30:54:821	1020	4498	AU	Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-download notify} added to AU services list
2021-12-17	13:30:54:821	1020	53a4	Agent	***  END  ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 2]
2021-12-17	13:30:54:821	1020	5e0	Agent	***  END  ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 1]
2021-12-17	13:30:54:837	1020	53a4	Agent	*************
2021-12-17	13:30:54:837	1020	5e0	Agent	*************
2021-12-17	13:30:54:837	1020	53a4	Agent	** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 2]
2021-12-17	13:30:54:837	1020	5e0	Agent	** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 1]
2021-12-17	13:30:54:837	1020	53a4	Agent	*********
2021-12-17	13:30:54:837	1020	5e0	Agent	*********
2021-12-17	13:30:54:837	1020	53a4	Agent	  * Online = Yes; Ignore download priority = No
2021-12-17	13:30:54:837	1020	5e0	Agent	  * Online = Yes; Ignore download priority = No
2021-12-17	13:30:54:837	1020	53a4	Agent	  * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"  
2021-12-17	13:30:54:837	1020	5e0	Agent	  * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"  
2021-12-17	13:30:54:837	1020	53a4	Agent	  * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
2021-12-17	13:30:54:837	1020	5e0	Agent	  * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
2021-12-17	13:30:54:837	1020	53a4	Agent	  * Search Scope = {Machine & All Users}
2021-12-17	13:30:54:837	1020	5e0	Agent	  * Search Scope = {Machine & All Users}
2021-12-17	13:30:54:837	1020	53a4	Agent	  * Caller SID for Applicability: S-1-5-18
2021-12-17	13:30:54:837	1020	5e0	Agent	  * Caller SID for Applicability: S-1-5-18
2021-12-17	13:30:54:837	1020	53a4	Agent	  * RegisterService is set
2021-12-17	13:30:54:837	1020	5e0	Agent	  * RegisterService is set
2021-12-17	13:30:54:837	1020	53a4	SLS	Retrieving SLS response from server using ETAG "16IMgThQPatW3gLvl1IedEpqN3G7onUum7nRv4bGmwI=_1440"...  
2021-12-17	13:30:54:837	1020	53a4	SLS	Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=801&L=de-DE&P=&PT=0x8&WUA=7.9.9600.19915
2021-12-17	13:30:55:306	1020	5e0	SLS	Retrieving SLS response from server using ETAG "16IMgThQPatW3gLvl1IedEpqN3G7onUum7nRv4bGmwI=_1440"...  
2021-12-17	13:30:55:337	1020	5e0	SLS	Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=801&L=de-DE&P=&PT=0x8&WUA=7.9.9600.19915
2021-12-17	13:30:55:446	1020	5e0	EP	Got WSUS Client/Server URL: "http://WSUS02:8530/ClientWebService/client.asmx"  
2021-12-17	13:30:55:446	1020	53a4	EP	Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "117cab2d-82b1-4b5a-a08c-4d62dbee7782"  
2021-12-17	13:30:55:462	1020	5e0	Setup	Checking for agent SelfUpdate
2021-12-17	13:30:55:462	1020	5e0	Setup	Client version: Core: 7.9.9600.19915  Aux: 7.9.9600.19915
2021-12-17	13:30:55:462	1020	53a4	EP	Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"  
2021-12-17	13:30:55:477	1020	5e0	EP	Got WSUS SelfUpdate URL: "http://WSUS02:8530/selfupdate"  
2021-12-17	13:30:55:524	1020	5e0	Misc	Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
2021-12-17	13:30:55:524	1020	5e0	Misc	 Microsoft signed: NA
2021-12-17	13:30:55:524	1020	5e0	Misc	 Infrastructure signed: Yes
2021-12-17	13:30:55:540	1020	5e0	Misc	Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\TMPB8C5.tmp with dwProvFlags 0x00000080:
2021-12-17	13:30:55:540	1020	5e0	Misc	 Microsoft signed: NA
2021-12-17	13:30:55:540	1020	5e0	Misc	 Infrastructure signed: Yes
2021-12-17	13:30:55:571	1020	5e0	Setup	FATAL: GetClientUpdateUrl failed, err = 0x8024D009
2021-12-17	13:30:55:618	1020	5e0	Setup	Skipping SelfUpdate check based on the /SKIP directive in wuident
2021-12-17	13:30:55:618	1020	5e0	Setup	SelfUpdate check completed.  SelfUpdate is NOT required.
2021-12-17	13:30:56:587	1020	53a4	PT	+++++++++++  PT: Synchronizing server updates  +++++++++++
2021-12-17	13:30:56:587	1020	53a4	PT	  + ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}, Server URL = https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx
2021-12-17	13:30:56:587	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig_WithRecovery) started; operation # 10; does use network; is at background priority
2021-12-17	13:30:56:681	1020	5e0	PT	+++++++++++  PT: Synchronizing server updates  +++++++++++
2021-12-17	13:30:56:712	1020	5e0	PT	  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://WSUS02:8530/ClientWebService/client.asmx
2021-12-17	13:30:56:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig_WithRecovery) started; operation # 11; does use network; is at background priority
2021-12-17	13:30:56:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig_WithRecovery, operation # 11) stopped; does use network; is at background priority
2021-12-17	13:30:56:712	1020	5e0	PT	WARNING: Cached cookie has expired or new PID is available
2021-12-17	13:30:56:759	1020	5e0	EP	Got WSUS SimpleTargeting URL: "http://WSUS02:8530"  
2021-12-17	13:30:56:759	1020	5e0	IdleTmr	WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie) started; operation # 12; does use network; is at background priority
2021-12-17	13:30:56:759	1020	5e0	PT	Initializing simple targeting cookie, clientId = b07bcfc0-2124-4904-b0e7-a50dc8942f6d, target group = Server, DNS name = SERVER02.DOMAIN.de
2021-12-17	13:30:56:759	1020	5e0	PT	  Server URL = http://WSUS02:8530/SimpleAuthWebService/SimpleAuth.asmx
2021-12-17	13:30:56:759	1020	5e0	IdleTmr	WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie, operation # 12) stopped; does use network; is at background priority
2021-12-17	13:30:56:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 13; does use network; is at background priority
2021-12-17	13:30:56:774	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 13) stopped; does use network; is at background priority
2021-12-17	13:30:56:790	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::RegisterComputer_WithRecovery) started; operation # 14; does use network; is at background priority
2021-12-17	13:30:56:790	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::RegisterComputer_WithRecovery, operation # 14) stopped; does use network; is at background priority
2021-12-17	13:30:56:790	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:56:821	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:56:821	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:56:821	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 15; does use network; is at background priority
2021-12-17	13:30:56:868	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 15) stopped; does use network; is at background priority
2021-12-17	13:30:56:868	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:56:899	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:56:899	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:56:899	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 16; does use network; is at background priority
2021-12-17	13:30:56:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 16) stopped; does use network; is at background priority
2021-12-17	13:30:56:946	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:56:978	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:56:978	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:56:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 17; does use network; is at background priority
2021-12-17	13:30:57:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 17) stopped; does use network; is at background priority
2021-12-17	13:30:57:040	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:056	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:056	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 18; does use network; is at background priority
2021-12-17	13:30:57:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 18) stopped; does use network; is at background priority
2021-12-17	13:30:57:102	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:118	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:118	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:118	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 19; does use network; is at background priority
2021-12-17	13:30:57:149	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 19) stopped; does use network; is at background priority
2021-12-17	13:30:57:149	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:181	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:181	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:181	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 20; does use network; is at background priority
2021-12-17	13:30:57:212	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 20) stopped; does use network; is at background priority
2021-12-17	13:30:57:227	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:243	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:243	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:243	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 21; does use network; is at background priority
2021-12-17	13:30:57:274	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 21) stopped; does use network; is at background priority
2021-12-17	13:30:57:274	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:306	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:306	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:306	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 22; does use network; is at background priority
2021-12-17	13:30:57:337	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 22) stopped; does use network; is at background priority
2021-12-17	13:30:57:337	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig_WithRecovery, operation # 10) stopped; does use network; is at background priority
2021-12-17	13:30:57:337	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig2_WithRecovery) started; operation # 23; does use network; is at background priority
2021-12-17	13:30:57:353	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:368	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:368	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:368	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 24; does use network; is at background priority
2021-12-17	13:30:57:399	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 24) stopped; does use network; is at background priority
2021-12-17	13:30:57:399	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:431	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:431	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 25; does use network; is at background priority
2021-12-17	13:30:57:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 25) stopped; does use network; is at background priority
2021-12-17	13:30:57:524	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:540	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:540	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:540	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetConfig2_WithRecovery, operation # 23) stopped; does use network; is at background priority
2021-12-17	13:30:57:540	1020	53a4	PT	WARNING: Cached cookie has expired or new PID is available
2021-12-17	13:30:57:540	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 26; does use network; is at background priority
2021-12-17	13:30:57:571	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 27; does use network; is at background priority
2021-12-17	13:30:57:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 26) stopped; does use network; is at background priority
2021-12-17	13:30:57:665	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 28; does use network; is at background priority
2021-12-17	13:30:57:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 28) stopped; does use network; is at background priority
2021-12-17	13:30:57:712	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:743	1020	53a4	IdleTmr	WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 27) stopped; does use network; is at background priority
2021-12-17	13:30:57:759	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:759	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:759	1020	53a4	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:774	1020	53a4	Agent	Read 1 cached app categories
2021-12-17	13:30:57:774	1020	53a4	Agent	SyncUpdates adding 1 visited app categories
2021-12-17	13:30:57:774	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 29; does use network; is at background priority
2021-12-17	13:30:57:821	1020	53a4	PT	  + SyncUpdates round trips: 0
2021-12-17	13:30:57:853	1020	53a4	Agent	  * Found 0 updates and 0 categories in search; evaluated appl. rules of 0 out of 0 deployed entities
2021-12-17	13:30:57:868	1020	53a4	Agent	*********
2021-12-17	13:30:57:868	1020	53a4	Agent	**  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 2]
2021-12-17	13:30:57:868	1020	53a4	Agent	*************
2021-12-17	13:30:57:868	1020	53a4	IdleTmr	WU operation (CSearchCall::Init ID 2, operation # 9) stopped; does use network; is at background priority
2021-12-17	13:30:57:868	1020	20ec	AU	>>##  RESUMED  ## AU: Search for updates [CallId = {884CF008-56CC-4A85-98BD-544A1D64BD50} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
2021-12-17	13:30:57:868	1020	20ec	AU	  # 0 updates detected
2021-12-17	13:30:57:868	1020	20ec	AU	#########
2021-12-17	13:30:57:868	1020	20ec	AU	##  END  ##  AU: Search for updates  [CallId = {884CF008-56CC-4A85-98BD-544A1D64BD50} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
2021-12-17	13:30:57:868	1020	20ec	AU	#############
2021-12-17	13:30:57:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 29) stopped; does use network; is at background priority
2021-12-17	13:30:57:899	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:915	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:915	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:915	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 31; does use network; is at background priority
2021-12-17	13:30:57:946	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 31) stopped; does use network; is at background priority
2021-12-17	13:30:57:962	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:57:977	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:57:977	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:57:977	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 32; does use network; is at background priority
2021-12-17	13:30:58:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 32) stopped; does use network; is at background priority
2021-12-17	13:30:58:024	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:58:040	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:58:040	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:58:040	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 33; does use network; is at background priority
2021-12-17	13:30:58:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 33) stopped; does use network; is at background priority
2021-12-17	13:30:58:306	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:58:337	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:58:337	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:58:477	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 34; does use network; is at background priority
2021-12-17	13:30:58:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 34) stopped; does use network; is at background priority
2021-12-17	13:30:58:556	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:58:556	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:58:556	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:58:556	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 35; does use network; is at background priority
2021-12-17	13:30:58:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 35) stopped; does use network; is at background priority
2021-12-17	13:30:58:602	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:58:602	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:58:602	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:58:602	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 36; does use network; is at background priority
2021-12-17	13:30:58:649	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 36) stopped; does use network; is at background priority
2021-12-17	13:30:58:853	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:58:853	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:58:853	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:58:962	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 37; does use network; is at background priority
2021-12-17	13:30:58:993	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 37) stopped; does use network; is at background priority
2021-12-17	13:30:59:071	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:102	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:102	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:196	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 38; does use network; is at background priority
2021-12-17	13:30:59:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 38) stopped; does use network; is at background priority
2021-12-17	13:30:59:243	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:243	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:243	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:259	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 39; does use network; is at background priority
2021-12-17	13:30:59:290	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 39) stopped; does use network; is at background priority
2021-12-17	13:30:59:306	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:306	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:306	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:321	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 40; does use network; is at background priority
2021-12-17	13:30:59:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 40) stopped; does use network; is at background priority
2021-12-17	13:30:59:368	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:399	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:399	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:399	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 41; does use network; is at background priority
2021-12-17	13:30:59:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 41) stopped; does use network; is at background priority
2021-12-17	13:30:59:446	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:446	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:446	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 42; does use network; is at background priority
2021-12-17	13:30:59:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 42) stopped; does use network; is at background priority
2021-12-17	13:30:59:540	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:556	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:556	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:556	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 43; does use network; is at background priority
2021-12-17	13:30:59:602	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 43) stopped; does use network; is at background priority
2021-12-17	13:30:59:790	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:790	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:790	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:30:59:821	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 44; does use network; is at background priority
2021-12-17	13:30:59:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 44) stopped; does use network; is at background priority
2021-12-17	13:30:59:962	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:30:59:962	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:30:59:962	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:00:040	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 45; does use network; is at background priority
2021-12-17	13:31:00:071	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 45) stopped; does use network; is at background priority
2021-12-17	13:31:00:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:31:00:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:31:00:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:00:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 46; does use network; is at background priority
2021-12-17	13:31:00:243	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 46) stopped; does use network; is at background priority
2021-12-17	13:31:00:493	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:31:00:524	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:31:00:524	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:00:524	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 47; does use network; is at background priority
2021-12-17	13:31:00:603	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 47) stopped; does use network; is at background priority
2021-12-17	13:31:00:728	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:31:00:728	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:31:00:728	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:00:743	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 48; does use network; is at background priority
2021-12-17	13:31:00:821	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 48) stopped; does use network; is at background priority
2021-12-17	13:31:00:946	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:31:00:946	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:31:00:946	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:00:946	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 49; does use network; is at background priority
2021-12-17	13:31:01:040	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 49) stopped; does use network; is at background priority
2021-12-17	13:31:01:134	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:31:01:134	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:31:01:134	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:31:02:868	1020	5798	Report	REPORT EVENT: {C565F6B1-733F-4CAC-AE2A-04994CAF0C3F}	2021-12-17 13:30:57:868+0100	1	147 [AGENT_DETECTION_FINISHED]	101	{00000000-0000-0000-0000-000000000000}	0	0	AutomaticUpdates	Success	Software Synchronization	Windows Update Client successfully detected 0 updates.
2021-12-17	13:31:02:868	1020	5798	Report	WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
2021-12-17	13:31:02:868	1020	5798	Report	WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
2021-12-17	13:31:02:868	1020	5798	Report	WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
2021-12-17	13:31:02:915	1020	5798	Report	CWERReporter finished handling 1 events. (00000000)
2021-12-17	13:32:10:243	1020	4f88	AU	Triggering AU detection through DetectNow API
2021-12-17	13:32:10:243	1020	4f88	AU	Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-download notify} added to AU services list
2021-12-17	13:32:10:243	1020	4f88	AU	Piggybacking on an AU detection already in progress
2021-12-17	13:33:01:134	1020	5e0	Agent	WARNING: Failed to evaluate Installed rule, updateId = {{FF64B9C1-AFCD-4A48-AFAA-FFD0D57D35EF}.202}, hr = 80080005
2021-12-17	13:33:01:134	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 51; does use network; is at background priority
2021-12-17	13:33:01:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 51) stopped; does use network; is at background priority
2021-12-17	13:33:01:353	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:01:353	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:01:353	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:01:368	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 52; does use network; is at background priority
2021-12-17	13:33:01:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 52) stopped; does use network; is at background priority
2021-12-17	13:33:01:868	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:01:884	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:01:884	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:01:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 53; does use network; is at background priority
2021-12-17	13:33:02:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 53) stopped; does use network; is at background priority
2021-12-17	13:33:02:259	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:02:290	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:02:290	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:02:290	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 54; does use network; is at background priority
2021-12-17	13:33:02:400	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 54) stopped; does use network; is at background priority
2021-12-17	13:33:02:478	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:02:478	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:02:478	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:02:493	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 55; does use network; is at background priority
2021-12-17	13:33:02:556	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 55) stopped; does use network; is at background priority
2021-12-17	13:33:02:634	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:02:634	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:02:634	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:02:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 56; does use network; is at background priority
2021-12-17	13:33:02:868	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 56) stopped; does use network; is at background priority
2021-12-17	13:33:02:900	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:02:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:02:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:02:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 57; does use network; is at background priority
2021-12-17	13:33:03:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 57) stopped; does use network; is at background priority
2021-12-17	13:33:03:134	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:03:134	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:03:134	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:33:03:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 58; does use network; is at background priority
2021-12-17	13:33:03:212	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 58) stopped; does use network; is at background priority
2021-12-17	13:33:03:228	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:33:03:228	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:33:03:228	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:03:244	1020	5e0	Agent	WARNING: Failed to evaluate Installed rule, updateId = {{61111F5B-6D1A-4D4D-B7A9-4EF7A1441432}.200}, hr = 80080005
2021-12-17	13:35:03:244	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 59; does use network; is at background priority
2021-12-17	13:35:03:416	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 59) stopped; does use network; is at background priority
2021-12-17	13:35:03:587	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:03:587	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:03:587	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:03:603	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 60; does use network; is at background priority
2021-12-17	13:35:03:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 60) stopped; does use network; is at background priority
2021-12-17	13:35:03:853	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:03:853	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:03:853	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:03:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 61; does use network; is at background priority
2021-12-17	13:35:03:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 61) stopped; does use network; is at background priority
2021-12-17	13:35:03:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:03:947	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:03:947	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:03:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 62; does use network; is at background priority
2021-12-17	13:35:04:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 62) stopped; does use network; is at background priority
2021-12-17	13:35:04:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 63; does use network; is at background priority
2021-12-17	13:35:04:134	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 63) stopped; does use network; is at background priority
2021-12-17	13:35:04:150	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:166	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:166	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:166	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 64; does use network; is at background priority
2021-12-17	13:35:04:244	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 64) stopped; does use network; is at background priority
2021-12-17	13:35:04:275	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:275	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:275	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 65; does use network; is at background priority
2021-12-17	13:35:04:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 65) stopped; does use network; is at background priority
2021-12-17	13:35:04:447	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:447	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:447	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 66; does use network; is at background priority
2021-12-17	13:35:04:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 66) stopped; does use network; is at background priority
2021-12-17	13:35:04:572	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:572	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:572	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 67; does use network; is at background priority
2021-12-17	13:35:04:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 67) stopped; does use network; is at background priority
2021-12-17	13:35:04:697	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:697	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:697	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 68; does use network; is at background priority
2021-12-17	13:35:04:775	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 68) stopped; does use network; is at background priority
2021-12-17	13:35:04:853	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:884	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:884	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 69; does use network; is at background priority
2021-12-17	13:35:04:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 69) stopped; does use network; is at background priority
2021-12-17	13:35:04:962	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:04:962	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:04:962	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:04:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 70; does use network; is at background priority
2021-12-17	13:35:05:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 70) stopped; does use network; is at background priority
2021-12-17	13:35:05:025	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:025	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:025	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 71; does use network; is at background priority
2021-12-17	13:35:05:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 71) stopped; does use network; is at background priority
2021-12-17	13:35:05:134	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:134	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:134	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 72; does use network; is at background priority
2021-12-17	13:35:05:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 72) stopped; does use network; is at background priority
2021-12-17	13:35:05:275	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:291	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:291	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:291	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 73; does use network; is at background priority
2021-12-17	13:35:05:400	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 73) stopped; does use network; is at background priority
2021-12-17	13:35:05:416	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:416	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:416	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 74; does use network; is at background priority
2021-12-17	13:35:05:447	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 74) stopped; does use network; is at background priority
2021-12-17	13:35:05:478	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:478	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:478	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:494	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 75; does use network; is at background priority
2021-12-17	13:35:05:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 75) stopped; does use network; is at background priority
2021-12-17	13:35:05:587	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:587	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:587	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:603	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 76; does use network; is at background priority
2021-12-17	13:35:05:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 76) stopped; does use network; is at background priority
2021-12-17	13:35:05:712	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:728	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:744	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 77; does use network; is at background priority
2021-12-17	13:35:05:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 77) stopped; does use network; is at background priority
2021-12-17	13:35:05:837	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:837	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:837	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:837	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 78; does use network; is at background priority
2021-12-17	13:35:05:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 78) stopped; does use network; is at background priority
2021-12-17	13:35:05:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:05:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:05:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:05:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 79; does use network; is at background priority
2021-12-17	13:35:06:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 79) stopped; does use network; is at background priority
2021-12-17	13:35:06:087	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:087	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:087	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 80; does use network; is at background priority
2021-12-17	13:35:06:134	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 80) stopped; does use network; is at background priority
2021-12-17	13:35:06:150	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:150	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:150	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:166	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 81; does use network; is at background priority
2021-12-17	13:35:06:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 81) stopped; does use network; is at background priority
2021-12-17	13:35:06:197	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:197	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:197	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:212	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 82; does use network; is at background priority
2021-12-17	13:35:06:244	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 82) stopped; does use network; is at background priority
2021-12-17	13:35:06:259	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:259	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:259	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:259	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 83; does use network; is at background priority
2021-12-17	13:35:06:291	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 83) stopped; does use network; is at background priority
2021-12-17	13:35:06:306	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:306	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:306	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:322	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 84; does use network; is at background priority
2021-12-17	13:35:06:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 84) stopped; does use network; is at background priority
2021-12-17	13:35:06:416	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:416	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:416	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 85; does use network; is at background priority
2021-12-17	13:35:06:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 85) stopped; does use network; is at background priority
2021-12-17	13:35:06:478	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:06:478	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:06:478	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:06:478	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 86; does use network; is at background priority
2021-12-17	13:35:06:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 86) stopped; does use network; is at background priority
2021-12-17	13:35:07:337	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:353	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:353	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:369	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 87; does use network; is at background priority
2021-12-17	13:35:07:416	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 87) stopped; does use network; is at background priority
2021-12-17	13:35:07:447	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:462	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:462	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 88; does use network; is at background priority
2021-12-17	13:35:07:494	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 88) stopped; does use network; is at background priority
2021-12-17	13:35:07:509	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:509	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:509	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 89; does use network; is at background priority
2021-12-17	13:35:07:556	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 89) stopped; does use network; is at background priority
2021-12-17	13:35:07:572	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:572	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:572	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 90; does use network; is at background priority
2021-12-17	13:35:07:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 90) stopped; does use network; is at background priority
2021-12-17	13:35:07:634	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:634	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:634	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 91; does use network; is at background priority
2021-12-17	13:35:07:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 91) stopped; does use network; is at background priority
2021-12-17	13:35:07:681	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 92; does use network; is at background priority
2021-12-17	13:35:07:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 92) stopped; does use network; is at background priority
2021-12-17	13:35:07:728	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:759	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:759	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 93; does use network; is at background priority
2021-12-17	13:35:07:791	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 93) stopped; does use network; is at background priority
2021-12-17	13:35:07:806	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:07:806	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:07:806	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:07:806	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 94; does use network; is at background priority
2021-12-17	13:35:08:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 94) stopped; does use network; is at background priority
2021-12-17	13:35:08:462	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:08:462	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:08:462	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:08:478	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 95; does use network; is at background priority
2021-12-17	13:35:08:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 95) stopped; does use network; is at background priority
2021-12-17	13:35:08:541	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:08:541	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:08:541	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:08:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 96; does use network; is at background priority
2021-12-17	13:35:08:572	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 96) stopped; does use network; is at background priority
2021-12-17	13:35:08:603	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:08:603	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:08:603	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:08:603	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 97; does use network; is at background priority
2021-12-17	13:35:08:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 97) stopped; does use network; is at background priority
2021-12-17	13:35:08:681	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:08:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:08:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:08:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 98; does use network; is at background priority
2021-12-17	13:35:08:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 98) stopped; does use network; is at background priority
2021-12-17	13:35:09:337	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:337	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:337	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 99; does use network; is at background priority
2021-12-17	13:35:09:400	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 99) stopped; does use network; is at background priority
2021-12-17	13:35:09:416	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:416	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:416	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 100; does use network; is at background priority
2021-12-17	13:35:09:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 100) stopped; does use network; is at background priority
2021-12-17	13:35:09:478	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:478	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:478	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:494	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 101; does use network; is at background priority
2021-12-17	13:35:09:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 101) stopped; does use network; is at background priority
2021-12-17	13:35:09:541	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:541	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:541	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:556	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 102; does use network; is at background priority
2021-12-17	13:35:09:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 102) stopped; does use network; is at background priority
2021-12-17	13:35:09:603	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:603	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:603	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 103; does use network; is at background priority
2021-12-17	13:35:09:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 103) stopped; does use network; is at background priority
2021-12-17	13:35:09:666	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:666	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:666	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 104; does use network; is at background priority
2021-12-17	13:35:09:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 104) stopped; does use network; is at background priority
2021-12-17	13:35:09:712	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:712	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:712	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:728	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 105; does use network; is at background priority
2021-12-17	13:35:09:791	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 105) stopped; does use network; is at background priority
2021-12-17	13:35:09:806	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:806	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:806	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 106; does use network; is at background priority
2021-12-17	13:35:09:838	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 106) stopped; does use network; is at background priority
2021-12-17	13:35:09:853	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:853	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:853	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 107; does use network; is at background priority
2021-12-17	13:35:09:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 107) stopped; does use network; is at background priority
2021-12-17	13:35:09:916	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:916	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:916	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:916	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 108; does use network; is at background priority
2021-12-17	13:35:09:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 108) stopped; does use network; is at background priority
2021-12-17	13:35:09:978	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:09:978	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:09:978	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:09:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 109; does use network; is at background priority
2021-12-17	13:35:10:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 109) stopped; does use network; is at background priority
2021-12-17	13:35:10:025	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:10:025	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:10:025	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:10:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 110; does use network; is at background priority
2021-12-17	13:35:10:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 110) stopped; does use network; is at background priority
2021-12-17	13:35:10:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:10:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:10:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:10:119	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 111; does use network; is at background priority
2021-12-17	13:35:10:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 111) stopped; does use network; is at background priority
2021-12-17	13:35:10:166	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:10:197	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:10:197	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:10:212	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 112; does use network; is at background priority
2021-12-17	13:35:10:416	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 112) stopped; does use network; is at background priority
2021-12-17	13:35:10:962	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:10:962	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:10:962	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:10:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 113; does use network; is at background priority
2021-12-17	13:35:11:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 113) stopped; does use network; is at background priority
2021-12-17	13:35:11:009	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:009	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:009	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 114; does use network; is at background priority
2021-12-17	13:35:11:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 114) stopped; does use network; is at background priority
2021-12-17	13:35:11:041	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:041	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:041	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:041	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 115; does use network; is at background priority
2021-12-17	13:35:11:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 115) stopped; does use network; is at background priority
2021-12-17	13:35:11:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 116; does use network; is at background priority
2021-12-17	13:35:11:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 116) stopped; does use network; is at background priority
2021-12-17	13:35:11:228	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:244	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:244	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:244	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 117; does use network; is at background priority
2021-12-17	13:35:11:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 117) stopped; does use network; is at background priority
2021-12-17	13:35:11:291	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:291	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:291	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:306	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 118; does use network; is at background priority
2021-12-17	13:35:11:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 118) stopped; does use network; is at background priority
2021-12-17	13:35:11:353	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:353	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:353	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:369	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 119; does use network; is at background priority
2021-12-17	13:35:11:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 119) stopped; does use network; is at background priority
2021-12-17	13:35:11:853	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:869	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:869	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 120; does use network; is at background priority
2021-12-17	13:35:11:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 120) stopped; does use network; is at background priority
2021-12-17	13:35:11:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:11:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 121; does use network; is at background priority
2021-12-17	13:35:11:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 121) stopped; does use network; is at background priority
2021-12-17	13:35:11:994	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:11:994	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:11:994	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 122; does use network; is at background priority
2021-12-17	13:35:12:181	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 122) stopped; does use network; is at background priority
2021-12-17	13:35:12:587	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:12:603	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:12:619	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 123; does use network; is at background priority
2021-12-17	13:35:12:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 123) stopped; does use network; is at background priority
2021-12-17	13:35:12:697	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:12:697	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:12:697	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 124; does use network; is at background priority
2021-12-17	13:35:12:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 124) stopped; does use network; is at background priority
2021-12-17	13:35:12:775	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:12:775	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:12:775	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:775	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 125; does use network; is at background priority
2021-12-17	13:35:12:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 125) stopped; does use network; is at background priority
2021-12-17	13:35:12:837	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:12:837	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:12:837	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 126; does use network; is at background priority
2021-12-17	13:35:12:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 126) stopped; does use network; is at background priority
2021-12-17	13:35:12:947	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:12:947	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:12:947	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:12:962	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 127; does use network; is at background priority
2021-12-17	13:35:12:994	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 127) stopped; does use network; is at background priority
2021-12-17	13:35:13:009	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:009	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:009	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 128; does use network; is at background priority
2021-12-17	13:35:13:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 128) stopped; does use network; is at background priority
2021-12-17	13:35:13:072	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:072	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:072	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 129; does use network; is at background priority
2021-12-17	13:35:13:119	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 129) stopped; does use network; is at background priority
2021-12-17	13:35:13:166	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:166	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:166	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:166	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 130; does use network; is at background priority
2021-12-17	13:35:13:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 130) stopped; does use network; is at background priority
2021-12-17	13:35:13:212	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:212	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:212	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 131; does use network; is at background priority
2021-12-17	13:35:13:259	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 131) stopped; does use network; is at background priority
2021-12-17	13:35:13:275	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:275	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:275	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 132; does use network; is at background priority
2021-12-17	13:35:13:322	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 132) stopped; does use network; is at background priority
2021-12-17	13:35:13:337	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:353	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:353	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:369	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 133; does use network; is at background priority
2021-12-17	13:35:13:400	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 133) stopped; does use network; is at background priority
2021-12-17	13:35:13:431	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:13:431	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:13:431	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:13:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 134; does use network; is at background priority
2021-12-17	13:35:13:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 134) stopped; does use network; is at background priority
2021-12-17	13:35:14:212	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:212	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:212	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 135; does use network; is at background priority
2021-12-17	13:35:14:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 135) stopped; does use network; is at background priority
2021-12-17	13:35:14:291	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:291	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:291	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:306	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 136; does use network; is at background priority
2021-12-17	13:35:14:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 136) stopped; does use network; is at background priority
2021-12-17	13:35:14:384	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:400	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:400	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:400	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 137; does use network; is at background priority
2021-12-17	13:35:14:447	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 137) stopped; does use network; is at background priority
2021-12-17	13:35:14:494	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:525	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:525	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 138; does use network; is at background priority
2021-12-17	13:35:14:572	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 138) stopped; does use network; is at background priority
2021-12-17	13:35:14:572	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:572	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:572	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 139; does use network; is at background priority
2021-12-17	13:35:14:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 139) stopped; does use network; is at background priority
2021-12-17	13:35:14:791	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:806	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:806	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:806	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 140; does use network; is at background priority
2021-12-17	13:35:14:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 140) stopped; does use network; is at background priority
2021-12-17	13:35:14:869	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:869	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:869	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:884	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 141; does use network; is at background priority
2021-12-17	13:35:14:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 141) stopped; does use network; is at background priority
2021-12-17	13:35:14:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:14:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:14:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:14:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 142; does use network; is at background priority
2021-12-17	13:35:15:384	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 142) stopped; does use network; is at background priority
2021-12-17	13:35:16:822	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:16:853	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:16:853	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:16:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 143; does use network; is at background priority
2021-12-17	13:35:20:494	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 143) stopped; does use network; is at background priority
2021-12-17	13:35:20:509	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:509	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:509	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:20:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 144; does use network; is at background priority
2021-12-17	13:35:20:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 144) stopped; does use network; is at background priority
2021-12-17	13:35:20:681	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:20:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 145; does use network; is at background priority
2021-12-17	13:35:20:728	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 145) stopped; does use network; is at background priority
2021-12-17	13:35:20:775	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:775	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:775	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:20:791	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 146; does use network; is at background priority
2021-12-17	13:35:20:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 146) stopped; does use network; is at background priority
2021-12-17	13:35:20:837	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:837	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:837	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:20:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 147; does use network; is at background priority
2021-12-17	13:35:20:916	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 147) stopped; does use network; is at background priority
2021-12-17	13:35:20:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:947	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:947	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:20:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 148; does use network; is at background priority
2021-12-17	13:35:20:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 148) stopped; does use network; is at background priority
2021-12-17	13:35:20:994	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:20:994	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:20:994	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 149; does use network; is at background priority
2021-12-17	13:35:21:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 149) stopped; does use network; is at background priority
2021-12-17	13:35:21:072	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:119	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:119	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:119	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 150; does use network; is at background priority
2021-12-17	13:35:21:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 150) stopped; does use network; is at background priority
2021-12-17	13:35:21:181	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:181	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:181	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 151; does use network; is at background priority
2021-12-17	13:35:21:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 151) stopped; does use network; is at background priority
2021-12-17	13:35:21:259	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:259	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:259	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:259	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 152; does use network; is at background priority
2021-12-17	13:35:21:291	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 152) stopped; does use network; is at background priority
2021-12-17	13:35:21:306	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:306	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:306	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:322	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 153; does use network; is at background priority
2021-12-17	13:35:21:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 153) stopped; does use network; is at background priority
2021-12-17	13:35:21:916	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:21:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 154; does use network; is at background priority
2021-12-17	13:35:21:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 154) stopped; does use network; is at background priority
2021-12-17	13:35:21:994	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:21:994	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:21:994	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 155; does use network; is at background priority
2021-12-17	13:35:22:041	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 155) stopped; does use network; is at background priority
2021-12-17	13:35:22:056	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:056	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:056	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 156; does use network; is at background priority
2021-12-17	13:35:22:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 156) stopped; does use network; is at background priority
2021-12-17	13:35:22:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 157; does use network; is at background priority
2021-12-17	13:35:22:259	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 157) stopped; does use network; is at background priority
2021-12-17	13:35:22:650	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:666	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 158; does use network; is at background priority
2021-12-17	13:35:22:744	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 158) stopped; does use network; is at background priority
2021-12-17	13:35:22:759	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:759	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:759	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:775	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 159; does use network; is at background priority
2021-12-17	13:35:22:806	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 159) stopped; does use network; is at background priority
2021-12-17	13:35:22:822	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:822	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:822	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:838	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 160; does use network; is at background priority
2021-12-17	13:35:22:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 160) stopped; does use network; is at background priority
2021-12-17	13:35:22:900	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:900	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:900	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:916	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 161; does use network; is at background priority
2021-12-17	13:35:22:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 161) stopped; does use network; is at background priority
2021-12-17	13:35:22:947	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:22:962	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:22:962	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:22:962	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 162; does use network; is at background priority
2021-12-17	13:35:22:994	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 162) stopped; does use network; is at background priority
2021-12-17	13:35:23:056	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:056	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:056	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:056	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 163; does use network; is at background priority
2021-12-17	13:35:23:087	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 163) stopped; does use network; is at background priority
2021-12-17	13:35:23:103	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:103	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:103	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 164; does use network; is at background priority
2021-12-17	13:35:23:212	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 164) stopped; does use network; is at background priority
2021-12-17	13:35:23:431	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:431	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:431	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:447	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 165; does use network; is at background priority
2021-12-17	13:35:23:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 165) stopped; does use network; is at background priority
2021-12-17	13:35:23:509	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:509	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:509	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 166; does use network; is at background priority
2021-12-17	13:35:23:572	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 166) stopped; does use network; is at background priority
2021-12-17	13:35:23:572	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:572	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:572	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 167; does use network; is at background priority
2021-12-17	13:35:23:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 167) stopped; does use network; is at background priority
2021-12-17	13:35:23:634	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:634	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:634	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 168; does use network; is at background priority
2021-12-17	13:35:23:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 168) stopped; does use network; is at background priority
2021-12-17	13:35:23:697	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:697	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:697	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 169; does use network; is at background priority
2021-12-17	13:35:23:728	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 169) stopped; does use network; is at background priority
2021-12-17	13:35:23:759	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:759	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:759	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:775	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 170; does use network; is at background priority
2021-12-17	13:35:23:806	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 170) stopped; does use network; is at background priority
2021-12-17	13:35:23:806	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:822	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:822	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 171; does use network; is at background priority
2021-12-17	13:35:23:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 171) stopped; does use network; is at background priority
2021-12-17	13:35:23:869	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:869	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:869	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 172; does use network; is at background priority
2021-12-17	13:35:23:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 172) stopped; does use network; is at background priority
2021-12-17	13:35:23:916	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 173; does use network; is at background priority
2021-12-17	13:35:23:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 173) stopped; does use network; is at background priority
2021-12-17	13:35:23:962	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:23:962	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:23:962	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:23:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 174; does use network; is at background priority
2021-12-17	13:35:24:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 174) stopped; does use network; is at background priority
2021-12-17	13:35:24:041	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:041	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:041	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:041	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 175; does use network; is at background priority
2021-12-17	13:35:24:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 175) stopped; does use network; is at background priority
2021-12-17	13:35:24:087	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:087	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:087	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 176; does use network; is at background priority
2021-12-17	13:35:24:134	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 176) stopped; does use network; is at background priority
2021-12-17	13:35:24:134	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:150	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:150	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 177; does use network; is at background priority
2021-12-17	13:35:24:166	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 177) stopped; does use network; is at background priority
2021-12-17	13:35:24:181	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:181	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:181	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 178; does use network; is at background priority
2021-12-17	13:35:24:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 178) stopped; does use network; is at background priority
2021-12-17	13:35:24:275	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:275	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:275	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 179; does use network; is at background priority
2021-12-17	13:35:24:322	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 179) stopped; does use network; is at background priority
2021-12-17	13:35:24:337	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:337	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:337	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:337	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 180; does use network; is at background priority
2021-12-17	13:35:24:369	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 180) stopped; does use network; is at background priority
2021-12-17	13:35:24:400	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:400	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:400	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:416	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 181; does use network; is at background priority
2021-12-17	13:35:24:447	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 181) stopped; does use network; is at background priority
2021-12-17	13:35:24:462	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:462	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:462	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 182; does use network; is at background priority
2021-12-17	13:35:24:525	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 182) stopped; does use network; is at background priority
2021-12-17	13:35:24:588	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:588	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:588	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 183; does use network; is at background priority
2021-12-17	13:35:24:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 183) stopped; does use network; is at background priority
2021-12-17	13:35:24:650	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:697	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:697	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 184; does use network; is at background priority
2021-12-17	13:35:24:728	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 184) stopped; does use network; is at background priority
2021-12-17	13:35:24:744	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:24:744	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:24:744	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:24:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 185; does use network; is at background priority
2021-12-17	13:35:24:916	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 185) stopped; does use network; is at background priority
2021-12-17	13:35:25:259	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:259	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:259	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:275	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 186; does use network; is at background priority
2021-12-17	13:35:25:306	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 186) stopped; does use network; is at background priority
2021-12-17	13:35:25:322	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:322	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:322	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:322	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 187; does use network; is at background priority
2021-12-17	13:35:25:353	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 187) stopped; does use network; is at background priority
2021-12-17	13:35:25:369	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:369	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:384	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:384	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 188; does use network; is at background priority
2021-12-17	13:35:25:416	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 188) stopped; does use network; is at background priority
2021-12-17	13:35:25:431	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:431	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:431	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 189; does use network; is at background priority
2021-12-17	13:35:25:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 189) stopped; does use network; is at background priority
2021-12-17	13:35:25:509	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:509	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:509	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 190; does use network; is at background priority
2021-12-17	13:35:25:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 190) stopped; does use network; is at background priority
2021-12-17	13:35:25:587	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:587	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:587	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:587	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 191; does use network; is at background priority
2021-12-17	13:35:25:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 191) stopped; does use network; is at background priority
2021-12-17	13:35:25:634	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:634	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:634	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:650	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 192; does use network; is at background priority
2021-12-17	13:35:25:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 192) stopped; does use network; is at background priority
2021-12-17	13:35:25:712	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:712	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:712	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 193; does use network; is at background priority
2021-12-17	13:35:25:744	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 193) stopped; does use network; is at background priority
2021-12-17	13:35:25:775	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:775	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:775	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:775	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 194; does use network; is at background priority
2021-12-17	13:35:25:806	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 194) stopped; does use network; is at background priority
2021-12-17	13:35:25:822	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:822	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:822	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:837	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 195; does use network; is at background priority
2021-12-17	13:35:25:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 195) stopped; does use network; is at background priority
2021-12-17	13:35:25:884	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:884	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:884	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 196; does use network; is at background priority
2021-12-17	13:35:25:931	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 196) stopped; does use network; is at background priority
2021-12-17	13:35:25:978	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:25:978	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:25:978	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:25:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 197; does use network; is at background priority
2021-12-17	13:35:26:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 197) stopped; does use network; is at background priority
2021-12-17	13:35:26:025	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:025	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:025	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 198; does use network; is at background priority
2021-12-17	13:35:26:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 198) stopped; does use network; is at background priority
2021-12-17	13:35:26:150	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:150	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:150	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:150	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 199; does use network; is at background priority
2021-12-17	13:35:26:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 199) stopped; does use network; is at background priority
2021-12-17	13:35:26:212	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:212	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:212	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 200; does use network; is at background priority
2021-12-17	13:35:26:306	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 200) stopped; does use network; is at background priority
2021-12-17	13:35:26:416	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:416	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:416	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:431	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 201; does use network; is at background priority
2021-12-17	13:35:26:462	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 201) stopped; does use network; is at background priority
2021-12-17	13:35:26:494	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:494	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:494	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:509	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 202; does use network; is at background priority
2021-12-17	13:35:26:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 202) stopped; does use network; is at background priority
2021-12-17	13:35:26:572	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:572	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:572	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:572	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 203; does use network; is at background priority
2021-12-17	13:35:26:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 203) stopped; does use network; is at background priority
2021-12-17	13:35:26:619	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:619	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:619	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:634	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 204; does use network; is at background priority
2021-12-17	13:35:26:666	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 204) stopped; does use network; is at background priority
2021-12-17	13:35:26:681	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:697	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 205; does use network; is at background priority
2021-12-17	13:35:26:728	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 205) stopped; does use network; is at background priority
2021-12-17	13:35:26:822	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:837	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:853	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 206; does use network; is at background priority
2021-12-17	13:35:26:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 206) stopped; does use network; is at background priority
2021-12-17	13:35:26:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:26:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:26:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:26:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 207; does use network; is at background priority
2021-12-17	13:35:26:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 207) stopped; does use network; is at background priority
2021-12-17	13:35:26:994	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:009	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:009	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:009	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 208; does use network; is at background priority
2021-12-17	13:35:27:181	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 208) stopped; does use network; is at background priority
2021-12-17	13:35:27:541	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:541	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:541	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:541	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 209; does use network; is at background priority
2021-12-17	13:35:27:619	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 209) stopped; does use network; is at background priority
2021-12-17	13:35:27:681	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:681	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:681	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:681	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 210; does use network; is at background priority
2021-12-17	13:35:27:712	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 210) stopped; does use network; is at background priority
2021-12-17	13:35:27:728	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:759	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:759	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:759	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 211; does use network; is at background priority
2021-12-17	13:35:27:791	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 211) stopped; does use network; is at background priority
2021-12-17	13:35:27:806	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:806	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:806	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:822	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 212; does use network; is at background priority
2021-12-17	13:35:27:853	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 212) stopped; does use network; is at background priority
2021-12-17	13:35:27:869	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:869	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:869	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:869	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 213; does use network; is at background priority
2021-12-17	13:35:27:900	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 213) stopped; does use network; is at background priority
2021-12-17	13:35:27:931	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:931	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:931	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:947	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 214; does use network; is at background priority
2021-12-17	13:35:27:978	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 214) stopped; does use network; is at background priority
2021-12-17	13:35:27:994	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:27:994	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:27:994	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:27:994	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 215; does use network; is at background priority
2021-12-17	13:35:28:025	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 215) stopped; does use network; is at background priority
2021-12-17	13:35:28:041	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:28:041	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:28:041	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:28:041	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 216; does use network; is at background priority
2021-12-17	13:35:28:072	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 216) stopped; does use network; is at background priority
2021-12-17	13:35:28:087	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:28:087	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:28:087	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:28:103	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 217; does use network; is at background priority
2021-12-17	13:35:28:119	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 217) stopped; does use network; is at background priority
2021-12-17	13:35:28:150	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:28:150	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:28:150	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:28:166	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 218; does use network; is at background priority
2021-12-17	13:35:28:197	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 218) stopped; does use network; is at background priority
2021-12-17	13:35:28:212	1020	5e0	Agent	Reading cached app categories using lifetime 604800 seconds
2021-12-17	13:35:28:212	1020	5e0	Agent	Read 0 cached app categories
2021-12-17	13:35:28:212	1020	5e0	Agent	SyncUpdates adding 0 visited app categories
2021-12-17	13:35:28:228	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 219; does use network; is at background priority
2021-12-17	13:35:28:244	1020	5e0	IdleTmr	WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 219) stopped; does use network; is at background priority
2021-12-17	13:35:28:259	1020	5e0	PT	WARNING: Exceeded max server round trips: 0x80244010
2021-12-17	13:35:28:259	1020	5e0	PT	  + SyncUpdates round trips: 201
2021-12-17	13:35:28:259	1020	5e0	PT	WARNING: Sync of Updates: 0x80244010
2021-12-17	13:35:28:259	1020	5e0	PT	WARNING: SyncServerUpdatesInternal failed: 0x80244010
2021-12-17	13:35:28:259	1020	5e0	Agent	  * WARNING: Failed to synchronize, error = 0x80244010
2021-12-17	13:35:28:259	1020	5e0	Agent	  * WARNING: Exit code = 0x80244010
2021-12-17	13:35:28:259	1020	5e0	Agent	*********
2021-12-17	13:35:28:259	1020	5e0	Agent	**  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 1]
2021-12-17	13:35:28:259	1020	5e0	Agent	*************
2021-12-17	13:35:28:259	1020	5e0	Agent	WARNING: WU client failed Searching for update with error 0x80244010
2021-12-17	13:35:28:259	1020	5e0	IdleTmr	WU operation (CSearchCall::Init ID 1, operation # 7) stopped; does use network; is at background priority
2021-12-17	13:35:28:259	1020	20ec	AU	>>##  RESUMED  ## AU: Search for updates [CallId = {8CBC75E2-D658-46CF-9B56-53EDC43102F9} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2021-12-17	13:35:28:259	1020	20ec	AU	  # WARNING: Search callback failed, result = 0x80244010
2021-12-17	13:35:28:259	1020	20ec	AU	#########
2021-12-17	13:35:28:259	1020	20ec	AU	##  END  ##  AU: Search for updates  [CallId = {8CBC75E2-D658-46CF-9B56-53EDC43102F9} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
2021-12-17	13:35:28:259	1020	20ec	AU	#############
2021-12-17	13:35:28:259	1020	20ec	AU	All AU searches complete.
2021-12-17	13:35:28:259	1020	20ec	AU	  # WARNING: Failed to find updates with error code 80244010
2021-12-17	13:35:28:259	1020	20ec	AU	Adding timer: 
2021-12-17	13:35:28:259	1020	20ec	AU	    Timer: 143FB093-8AA1-4DBC-A582-8806F8F4C1F7, Expires 2021-12-17 20:04:15, not idle-only, not network-only
2021-12-17	13:35:28:259	1020	20ec	AU	AU setting next detection timeout to 2021-12-17 14:12:20
2021-12-17	13:35:28:259	1020	20ec	AU	Adding timer: 
2021-12-17	13:35:28:259	1020	20ec	AU	    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2021-12-17 14:12:20, not idle-only, not network-only
2021-12-17	13:35:28:275	1020	20ec	AU	Currently AUX is enabled - so not show any WU Upgrade notifications.
2021-12-17	13:35:28:275	1020	20ec	AU	WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2021-12-17	13:35:28:275	1020	20ec	AU	WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
2021-12-17	13:35:33:259	1020	5798	Report	REPORT EVENT: {7F4EF9EC-CD9C-4FDE-AE3D-C2ADAFB85C90}	2021-12-17 13:35:28:259+0100	1	148 [AGENT_DETECTION_FAILED]	101	{00000000-0000-0000-0000-000000000000}	0	80244010	AutomaticUpdates	Failure	Software Synchronization	Windows Update Client failed to detect with error 0x80244010.
2021-12-17	13:35:33:322	1020	5798	Report	CWERReporter::HandleEvents - WER report upload completed with WER status 0x8 (hr=0)
2021-12-17	13:35:33:322	1020	5798	Report	WER Report sent: 7.9.9600.19915 0x80244010(0) 00000000-0000-0000-0000-000000000000 Scan 0 1 AutomaticUpdates {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} 0
2021-12-17	13:35:33:322	1020	5798	Report	CWERReporter finished handling 1 events. (00000000)
2021-12-17	13:37:14:260	1020	5798	EP	Got WSUS Client/Server URL: "http://WSUS02:8530/ClientWebService/client.asmx"  
2021-12-17	13:37:14:275	1020	5798	EP	Got WSUS Reporting URL: "http://WSUS02:8530/ReportingWebService/ReportingWebService.asmx"  
2021-12-17	13:37:14:275	1020	5798	Report	OpenReportingWebServiceConnection, reporting URL = http://WSUS02:8530/ReportingWebService/ReportingWebService.asmx
2021-12-17	13:37:14:275	1020	5798	IdleTmr	WU operation (CLegacyEventUploader::HandleEvents) started; operation # 226; does use network; is at background priority
2021-12-17	13:37:14:275	1020	5798	Report	Uploading 1 events using cached cookie.
2021-12-17	13:37:14:494	1020	5798	Report	Reporter successfully uploaded 1 events.
2021-12-17	13:37:14:494	1020	5798	IdleTmr	WU operation (CLegacyEventUploader::HandleEvents, operation # 226) stopped; does use network; is at background priority
2021-12-17	13:40:01:869	1020	5798	EP	Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"  
2021-12-17	13:40:01:916	1020	5798	EP	Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"  
2021-12-17	13:40:01:916	1020	5798	Report	OpenReportingWebServiceConnection, reporting URL = http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
2021-12-17	13:40:01:916	1020	5798	IdleTmr	WU operation (CLegacyEventUploader::HandleEvents) started; operation # 227; does use network; is at background priority
2021-12-17	13:40:01:916	1020	5798	Report	Uploading 1 events using cached cookie.
2021-12-17	13:40:02:166	1020	5798	Report	Reporter successfully uploaded 1 events.
2021-12-17	13:40:02:166	1020	5798	IdleTmr	WU operation (CLegacyEventUploader::HandleEvents, operation # 227) stopped; does use network; is at background priority
2021-12-17	13:48:02:255	1020	5798	Report	WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
2021-12-17	13:48:02:255	1020	5798	Report	WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
2021-12-17	13:50:02:273	1020	2ec8	AU	Earliest future timer found: 
2021-12-17	13:50:02:273	1020	2ec8	AU	    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2021-12-17 14:12:20, not idle-only, not network-only
2021-12-17	13:50:03:273	1020	4498	AU	###########  AU: Uninitializing Automatic Updates  ###########
2021-12-17	13:50:03:304	1020	4498	WuTask	Uninit WU Task Manager
2021-12-17	13:50:03:351	1020	4498	Agent	Sending shutdown notification to client
2021-12-17	13:50:03:351	3588	481c	COMAPI	WARNING: Received service shutdown/self-update notification.
2021-12-17	13:50:03:366	1020	4498	AU	Earliest future timer found: 
2021-12-17	13:50:03:366	1020	4498	AU	    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2021-12-17 14:12:20, not idle-only, not network-only
2021-12-17	13:50:03:382	1020	4498	AU	Earliest future timer found: 
2021-12-17	13:50:03:382	1020	4498	AU	    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2021-12-17 14:12:20, not idle-only, not network-only
2021-12-17	13:50:03:445	1020	4498	Service	*********
2021-12-17	13:50:03:445	1020	4498	Service	**  END  **  Service: Service exit [Exit code = 0x240001]
2021-12-17	13:50:03:445	1020	4498	Service	*************

Bin mit dem Latein gerade etwas am Ende woran es haken tut die andern 5 Server 2012R2 gehen ohne Probleme am WSUS.

Beste Grüße

Markus
Auf Facebook teilen
Auf X (Twitter) teilen
Auf Reddit teilen
Auf Linkedin teilen

Content-ID: 1630683758

Url: https://administrator.de/forum/server-2012r2-kontaktieren-den-wsus-und-ist-sichtbar-jedoch-erstelen-sie-keine-berichte-1630683758.html

Ausgedruckt am: 30.04.2025 um 05:04 Uhr

jsysde
Lösung jsysde 17.12.2021 um 21:48:43 Uhr
Goto Top
N'Abend.

In a nutshell:

Reset Windows Update Tool herunterladen:
https://wureset.com/downloads.html

Auf dem betroffenen 2012er:
- Regkeys unter HKLM\Policies\Software\Microsoft\Windows\WindowsUpdate löschen
- Regkeys per GPO (oder manuell/per REG-Import) wiederherstellen
- WUReset Tool laufen lassen
- Währenddessen den 2012er vom WSUS entfernen
- 2012er neu starten und nach Updates suchen lassen

Der korrekte Befehl für das Erzeugen der Reports lautet:
1
wuauclt /reportnow
Mit nur /report wirste nix erreichen.

Viel Erfolg.

Cheers,
jsysde
shooan
shooan 20.12.2021 um 07:13:27 Uhr
Goto Top
Moin Jsysde,

danke für deine schnelle Hilfe.

Über das Wochende hatt sich nun doch der betroffene Server am Wsus mit einem Bericht gemeldet.
Scheint wohl doch manchmal etwas länger zu dauern als 24 oder 48 Stunden.

Sollte es noch mal Probleme geben würde ich das mit dem Tool dann noch mal Testen und auch hier Berichten.

Besten Dank

Markus