-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmware.log
1868 lines (1868 loc) · 168 KB
/
vmware.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
2023-09-19T17:43:14.792Z In(05) vmx Log for VMware Workstation pid=4652 version=17.0.0 build=build-20800274 option=Release
2023-09-19T17:43:14.792Z In(05) vmx The host is x86_64.
2023-09-19T17:43:14.792Z In(05) vmx Host codepage=windows-1252 encoding=windows-1252
2023-09-19T17:43:14.792Z In(05) vmx Host is Windows 10 Pro, 64-bit (Build 19045.3448)
2023-09-19T17:43:14.792Z In(05) vmx Host offset from UTC is -06:00.
2023-09-19T17:43:14.529Z In(05) vmx VTHREAD 11940 "vmx"
2023-09-19T17:43:14.534Z In(05) vmx LOCALE windows-1252 -> NULL User=409 System=409
2023-09-19T17:43:14.534Z In(05) vmx Msg_SetLocaleEx: HostLocale=windows-1252 UserLocale=NULL
2023-09-19T17:43:14.617Z In(05) vmx DictionaryLoad: Cannot open file "C:\Users\great computer\AppData\Roaming\VMware\config.ini": The system cannot find the file specified.
2023-09-19T17:43:14.617Z In(05) vmx Msg_Reset:
2023-09-19T17:43:14.617Z In(05) vmx [msg.dictionary.load.openFailed] Cannot open file "C:\Users\great computer\AppData\Roaming\VMware\config.ini": The system cannot find the file specified.
2023-09-19T17:43:14.617Z In(05) vmx ----------------------------------------
2023-09-19T17:43:14.617Z In(05) vmx ConfigDB: Failed to load C:\Users\great computer\AppData\Roaming\VMware\config.ini
2023-09-19T17:43:14.623Z In(05) vmx Win32U_GetFileAttributes: GetFileAttributesExW("C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmpl", ...) failed, error: 2
2023-09-19T17:43:14.625Z In(05) vmx OBJLIB-LIB: Objlib initialized.
2023-09-19T17:43:14.631Z In(05) vmx DictionaryLoad: Cannot open file "C:\Users\great computer\AppData\Roaming\VMware\config.ini": The system cannot find the file specified.
2023-09-19T17:43:14.631Z In(05) vmx [msg.dictionary.load.openFailed] Cannot open file "C:\Users\great computer\AppData\Roaming\VMware\config.ini": The system cannot find the file specified.
2023-09-19T17:43:14.631Z In(05) vmx PREF Optional preferences file not found at C:\Users\great computer\AppData\Roaming\VMware\config.ini. Using default values.
2023-09-19T17:43:14.778Z In(05) vmx lib/ssl: OpenSSL using RAND_OpenSSL for RAND
2023-09-19T17:43:14.779Z In(05) vmx lib/ssl: protocol list tls1.2
2023-09-19T17:43:14.780Z In(05) vmx lib/ssl: protocol list tls1.2 (openssl flags 0x36000000)
2023-09-19T17:43:14.780Z In(05) vmx lib/ssl: cipher list ECDHE+AESGCM:RSA+AESGCM:ECDHE+AES:RSA+AES
2023-09-19T17:43:14.780Z In(05) vmx lib/ssl: curves list prime256v1:secp384r1:secp521r1
2023-09-19T17:43:14.898Z In(05) vmx Hostname=Radiant-Fleak
2023-09-19T17:43:14.903Z In(05) vmx IP=fe80::4f71:93a5:f0d4:23f8%14
2023-09-19T17:43:14.903Z In(05) vmx IP=fe80::5cd3:47ed:96e9:305c%4
2023-09-19T17:43:14.903Z In(05) vmx IP=192.168.65.1
2023-09-19T17:43:14.903Z In(05) vmx IP=192.168.0.104
2023-09-19T17:43:14.933Z In(05) vmx System uptime 187950443396 us
2023-09-19T17:43:14.933Z In(05) vmx Command line: "C:\Program Files (x86)\VMware\VMware Workstation\x64\vmware-vmx.exe" "-T" "querytoken" "-s" "vmx.stdio.keep=TRUE" "-#" "product=1;name=VMware Workstation;version=17.0.0;buildnumber=20800274;licensename=VMware Workstation;licenseversion=17.0;" "-@" "pipe=\\.\pipe\vmx3e272541a996d571;msgs=ui" "C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmx"
2023-09-19T17:43:14.933Z In(05) vmx Msg_SetLocaleEx: HostLocale=windows-1252 UserLocale=NULL
2023-09-19T17:43:15.220Z In(05) vmx WQPoolAllocPoll : pollIx = 1, signalHandle = 828
2023-09-19T17:43:15.221Z In(05) vmx WQPoolAllocPoll : pollIx = 2, signalHandle = 836
2023-09-19T17:43:15.225Z In(05) vmx VigorTransport listening on fd 748
2023-09-19T17:43:15.225Z In(05) vmx Vigor_Init 1
2023-09-19T17:43:15.226Z In(05) vmx Connecting 'ui' to pipe '\\.\pipe\vmx3e272541a996d571' with user '(null)'
2023-09-19T17:43:15.226Z In(05) vmx VMXVmdb: Local connection timeout: 60000 ms.
2023-09-19T17:43:15.228Z In(05) vmx VmdbAddConnection: cnxPath=/db/connection/#1/, cnxIx=1
2023-09-19T17:43:15.229Z In(05) vmx Vix: [mainDispatch.c:488]: VMAutomation: Initializing VMAutomation.
2023-09-19T17:43:15.230Z In(05) vmx Vix: [mainDispatch.c:740]: VMAutomationOpenListenerSocket() listening
2023-09-19T17:43:15.244Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=0, newAppState=1870, success=1 additionalError=0
2023-09-19T17:43:15.244Z In(05) vmx Transitioned vmx/execState/val to poweredOff
2023-09-19T17:43:15.244Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1873, success=1 additionalError=0
2023-09-19T17:43:15.244Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=2, newAppState=1877, success=1 additionalError=0
2023-09-19T17:43:15.244Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=3, newAppState=1881, success=1 additionalError=0
2023-09-19T17:43:15.330Z In(05) vmx IOPL_VBSRunning: VBS is set to 0
2023-09-19T17:43:15.332Z Wa(03) vmx Can't set WSS, error 1314
2023-09-19T17:43:15.332Z In(05) vmx VerificationOfHostParameters status 1
2023-09-19T17:43:15.332Z Wa(03) vmx VMX can't verify host parameters.
2023-09-19T17:43:15.334Z In(05) vmx FeatureCompat: No EVC masks.
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID vendor: GenuineIntel
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID family: 0x6 model: 0x2a stepping: 0x7
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID codename: Sandy Bridge
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID name: Intel(R) Core(TM) i5-2500 CPU @ 3.30GHz
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000000, 0: 0x0000000d 0x756e6547 0x6c65746e 0x49656e69
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000001, 0: 0x000206a7 0x00100800 0x1fbae3ff 0xbfebfbff
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000002, 0: 0x76035a01 0x00f0b0ff 0x00000000 0x00ca0000
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000003, 0: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000004, 0: 0x1c004121 0x01c0003f 0x0000003f 0x00000000
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000004, 1: 0x1c004122 0x01c0003f 0x0000003f 0x00000000
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000004, 2: 0x1c004143 0x01c0003f 0x000001ff 0x00000000
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000004, 3: 0x1c03c163 0x02c0003f 0x00001fff 0x00000006
2023-09-19T17:43:15.337Z In(05) vmx hostCPUID level 00000004, 4: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 00000005, 0: 0x00000040 0x00000040 0x00000003 0x00001120
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 00000006, 0: 0x00000077 0x00000002 0x00000009 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 00000007, 0: 0x00000000 0x00000000 0x00000000 0x9c000400
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 00000008, 0: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 00000009, 0: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000a, 0: 0x07300803 0x00000000 0x00000000 0x00000603
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000b, 0: 0x00000001 0x00000001 0x00000100 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000b, 1: 0x00000004 0x00000004 0x00000201 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000b, 2: 0x00000000 0x00000000 0x00000002 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000c, 0: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000d, 0: 0x00000007 0x00000340 0x00000340 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000d, 1: 0x00000001 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 0000000d, 2: 0x00000100 0x00000240 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000000, 0: 0x80000008 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000001, 0: 0x00000000 0x00000000 0x00000001 0x28100800
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000002, 0: 0x20202020 0x20202020 0x65746e49 0x2952286c
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000003, 0: 0x726f4320 0x4d542865 0x35692029 0x3035322d
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000004, 0: 0x50432030 0x20402055 0x30332e33 0x007a4847
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000005, 0: 0x00000000 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000006, 0: 0x00000000 0x00000000 0x01006040 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000007, 0: 0x00000000 0x00000000 0x00000000 0x00000100
2023-09-19T17:43:15.338Z In(05) vmx hostCPUID level 80000008, 0: 0x00003024 0x00000000 0x00000000 0x00000000
2023-09-19T17:43:15.338Z In(05) vmx CPUID differences from hostCPUID.
2023-09-19T17:43:15.338Z In(05) vmx Physical APIC IDs: 0,2,4,6
2023-09-19T17:43:15.338Z In(05) vmx Physical X2APIC IDs: 0,2,4,6
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x3a = 0x5
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x480 = 0xda040000000010
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x481 = 0x7f00000016
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x482 = 0xfff9fffe0401e172
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x483 = 0x7fffff00036dff
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x484 = 0xffff000011ff
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x485 = 0x100401e5
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x486 = 0x80000021
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x487 = 0xffffffff
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x488 = 0x2000
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x489 = 0x667ff
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48a = 0x2a
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48b = 0xff00000000
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48c = 0xf0106114141
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48d = 0x7f00000016
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48e = 0xfff9fffe04006172
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x48f = 0x7fffff00036dfb
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x490 = 0xffff000011fb
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x491 = 0
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x492 = 0
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0xc0010114 = 0
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0xce = 0x80000000
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x10a = 0
2023-09-19T17:43:15.339Z In(05) vmx Common: MSR 0x122 = 0
2023-09-19T17:43:15.339Z In(05) vmx VMMon_GetkHzEstimate: Calculated 3292523 kHz
2023-09-19T17:43:15.339Z In(05) vmx TSC Hz estimates: vmmon 3292523000, remembered 0, osReported 3701000000. Using 3701000000 Hz.
2023-09-19T17:43:15.339Z In(05) vmx TSC first measured delta 210
2023-09-19T17:43:15.339Z In(05) vmx TSC min delta 187
2023-09-19T17:43:15.339Z In(05) vmx PTSC: RefClockToPTSC 0 @ 10000000Hz -> 0 @ 3701000000Hz
2023-09-19T17:43:15.339Z In(05) vmx PTSC: RefClockToPTSC ((x * 3104623821) >> 23) + -150665426193665
2023-09-19T17:43:15.339Z In(05) vmx PTSC: tscOffset -134178748099242
2023-09-19T17:43:15.339Z In(05) vmx PTSC: using TSC
2023-09-19T17:43:15.340Z In(05) vmx PTSC: hardware TSCs are synchronized.
2023-09-19T17:43:15.340Z In(05) vmx PTSC: hardware TSCs may have been adjusted by the host.
2023-09-19T17:43:15.340Z In(05) vmx PTSC: current PTSC=341076
2023-09-19T17:43:15.352Z In(05) vmx WQPoolAllocPoll : pollIx = 3, signalHandle = 1040
2023-09-19T17:43:15.410Z In(05) vmx ConfigCheck: No rules file found. Checks are disabled.
2023-09-19T17:43:15.411Z In(05) vmx changing directory to C:\Users\great computer\Documents\Virtual Machines\WinServer16\.
2023-09-19T17:43:15.411Z In(05) vmx Config file: C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmx
2023-09-19T17:43:15.413Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1875, success=1 additionalError=0
2023-09-19T17:43:15.413Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=2, newAppState=1878, success=1 additionalError=0
2023-09-19T17:43:15.670Z Wa(03) vmx PowerOn
2023-09-19T17:43:15.670Z In(05) vmx VMX_PowerOn: VMX build 20800274, UI build 20800274
2023-09-19T17:43:15.690Z In(05) vmx HostWin32: WIN32 NUMA node 0, CPU mask 0x000000000000000f
2023-09-19T17:43:15.698Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=0, newAppState=1871, success=1 additionalError=0
2023-09-19T17:43:15.753Z In(05) vmx VMXSTATS: Successfully created statsfile: WinServer16.scoreboard
2023-09-19T17:43:15.754Z In(05) vmx VMXSTATS: Update Product Information: VMware Workstation 17.0.0 build-20800274 Release TotalBlockSize: 64
2023-09-19T17:43:15.754Z In(05) vmx HOST Windows version 10.0, build 19045, platform 2, ""
2023-09-19T17:43:15.754Z In(05) vmx DICT --- GLOBAL SETTINGS C:\ProgramData\VMware\VMware Workstation\settings.ini
2023-09-19T17:43:15.754Z In(05) vmx DICT printers.enabled = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT --- NON PERSISTENT (null)
2023-09-19T17:43:15.754Z In(05) vmx DICT --- USER PREFERENCES C:\Users\great computer\AppData\Roaming\VMware\preferences.ini
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.keyboardAndMouse.vmHotKey.enabled = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.keyboardAndMouse.vmHotKey.count = "0"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.vmplayer.firstRunDismissedVersion = "17.0.0"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.lastUpdateCheckSec = "1694849518"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.guestKey = "windows2019srv-64"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.installMediaType = "later"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU.count = "7"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU0.location = "C:\Users\great computer\Downloads\Windows_Server_2016_Datacenter_EVAL_en-us_14393_refresh.ISO"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU1.location = "C:\Users\great computer\Downloads\rhel-9.2-x86_64-dvd.iso"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.vmplayer.deviceBarToplevel = "TRUE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore.numItems = "3"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore0.key = <not printed>
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore0.value = "1c0ed2c7-02ef-48b5-b597-3d15ece7f54e"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license.maxNum = "2"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license0.version = "16.0"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license0.registrationViewed = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license0.lastEvalReminder = "30"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window.count = "1"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab.count = "2"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab0.dest = ""
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab0.file = "C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmx"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab0.type = "vm"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab0.cnxType = "vmdb"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab0.focused = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab1.cnxType = "vmdb"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.sidebar = "TRUE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.sidebar.width = "200"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.statusBar = "TRUE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tabs = "TRUE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.thumbnailBar = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.thumbnailBar.size = "125"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.thumbnailBar.view = "same-folder"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.placement.left = "26"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.placement.top = "26"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.placement.right = "1051"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.placement.bottom = "399"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.maximized = "TRUE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.ws.session.window0.tab2.cnxType = "vmdb"
2023-09-19T17:43:15.754Z In(05) vmx DICT hint.vmui.showNewUSBDevs = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT hints.hideAll = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore1.key = <not printed>
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore1.value = "dcaa9bf8-4798-43d9-b750-703c15a5fa00"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU2.location = "C:\Users\great computer\Downloads\Windows_7_Professional_x64.iso"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM0.filename = "C:\Users\great computer\Documents\Virtual Machines\CBC\CBC.vmx"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM0.displayName = "CBC"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM0.index = "0"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU3.location = "C:\Users\great computer\Downloads\CentOS-7-x86_64-Everything-2207-02.iso"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU4.location = "C:\Users\great computer\Downloads\CentOS-7-x86_64-Everything-2009.iso"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM1.filename = "C:\Users\great computer\Documents\Virtual Machines\RHEL\RHEL.vmx"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM1.displayName = "RHEL"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM1.index = "1"
2023-09-19T17:43:15.754Z In(05) vmx DICT vmWizard.isoLocationMRU5.location = "C:\Users\great computer\Downloads\rhel-server-7.9-x86_64-dvd.iso"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM2.filename = "C:\Users\great computer\Documents\Virtual Machines\Warhead\Warhead.vmx"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM2.displayName = "Warhead"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.mruVM2.index = "2"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license1.version = "17.0"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license1.registrationViewed = "FALSE"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.license1.lastEvalReminder = "15"
2023-09-19T17:43:15.754Z In(05) vmx DICT pref.updatesVersionIgnore2.key = <not printed>
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.updatesVersionIgnore2.value = "b3daec82-64a5-428b-aa29-476fd69fe5e7"
2023-09-19T17:43:15.755Z In(05) vmx DICT vmWizard.mode = "typical"
2023-09-19T17:43:15.755Z In(05) vmx DICT vmWizard.isoLocationMRU6.location = "C:\Users\great computer\Desktop\AlmaLinux-8-latest-x86_64-minimal.iso"
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab3.cnxType = "vmdb"
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab4.cnxType = "vmdb"
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab1.dest = ""
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab1.file = "C:\Users\great computer\Documents\Virtual Machines\Windows 7\Windows 7.vmx"
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab1.type = "vm"
2023-09-19T17:43:15.755Z In(05) vmx DICT pref.ws.session.window0.tab1.focused = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- USER DEFAULTS C:\Users\great computer\AppData\Roaming\VMware\config.ini
2023-09-19T17:43:15.755Z In(05) vmx DICT --- HOST DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.simplifiedUI = "no"
2023-09-19T17:43:15.755Z In(05) vmx DICT authd.client.port = "902"
2023-09-19T17:43:15.755Z In(05) vmx DICT authd.proxy.nfc = "vmware-hostd:ha-nfc"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled.epoch = "866"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.componentDownloadEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.dataCollectionEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.dataCollectionEnabled.epoch = "866"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- SITE DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.simplifiedUI = "no"
2023-09-19T17:43:15.755Z In(05) vmx DICT authd.client.port = "902"
2023-09-19T17:43:15.755Z In(05) vmx DICT authd.proxy.nfc = "vmware-hostd:ha-nfc"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled.epoch = "866"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.componentDownloadEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.dataCollectionEnabled = "yes"
2023-09-19T17:43:15.755Z In(05) vmx DICT installerDefaults.dataCollectionEnabled.epoch = "866"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- NONPERSISTENT
2023-09-19T17:43:15.755Z In(05) vmx DICT vmx.stdio.keep = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT gui.available = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- COMMAND LINE
2023-09-19T17:43:15.755Z In(05) vmx DICT vmx.stdio.keep = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT gui.available = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- RECORDING
2023-09-19T17:43:15.755Z In(05) vmx DICT vmx.stdio.keep = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT gui.available = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT --- CONFIGURATION C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmx
2023-09-19T17:43:15.755Z In(05) vmx DICT config.version = "8"
2023-09-19T17:43:15.755Z In(05) vmx DICT virtualHW.version = "20"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge4.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge4.virtualDev = "pcieRootPort"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge4.functions = "8"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge5.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge5.virtualDev = "pcieRootPort"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge5.functions = "8"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge6.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge6.virtualDev = "pcieRootPort"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge6.functions = "8"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge7.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge7.virtualDev = "pcieRootPort"
2023-09-19T17:43:15.755Z In(05) vmx DICT pciBridge7.functions = "8"
2023-09-19T17:43:15.755Z In(05) vmx DICT vmci0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT hpet0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT nvram = "WinServer16.nvram"
2023-09-19T17:43:15.755Z In(05) vmx DICT virtualHW.productCompatibility = "hosted"
2023-09-19T17:43:15.755Z In(05) vmx DICT powerType.powerOff = "soft"
2023-09-19T17:43:15.755Z In(05) vmx DICT powerType.powerOn = "soft"
2023-09-19T17:43:15.755Z In(05) vmx DICT powerType.suspend = "soft"
2023-09-19T17:43:15.755Z In(05) vmx DICT powerType.reset = "soft"
2023-09-19T17:43:15.755Z In(05) vmx DICT displayName = "WinServer16"
2023-09-19T17:43:15.755Z In(05) vmx DICT firmware = "efi"
2023-09-19T17:43:15.755Z In(05) vmx DICT guestOS = "windows2019srv-64"
2023-09-19T17:43:15.755Z In(05) vmx DICT tools.syncTime = "FALSE"
2023-09-19T17:43:15.755Z In(05) vmx DICT sound.autoDetect = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT sound.virtualDev = "hdaudio"
2023-09-19T17:43:15.755Z In(05) vmx DICT sound.fileName = "-1"
2023-09-19T17:43:15.755Z In(05) vmx DICT sound.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT numvcpus = "2"
2023-09-19T17:43:15.755Z In(05) vmx DICT cpuid.coresPerSocket = "1"
2023-09-19T17:43:15.755Z In(05) vmx DICT vcpu.hotadd = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT memsize = "2048"
2023-09-19T17:43:15.755Z In(05) vmx DICT mem.hotadd = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT sata0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT nvme0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT nvme0:0.fileName = "WinServer16.vmdk"
2023-09-19T17:43:15.755Z In(05) vmx DICT nvme0:0.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT sata0:1.deviceType = "cdrom-image"
2023-09-19T17:43:15.755Z In(05) vmx DICT sata0:1.fileName = "C:\Users\great computer\Downloads\Windows_Server_2016_Datacenter_EVAL_en-us_14393_refresh.ISO"
2023-09-19T17:43:15.755Z In(05) vmx DICT sata0:1.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT usb.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT ehci.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT usb_xhci.present = "TRUE"
2023-09-19T17:43:15.755Z In(05) vmx DICT ethernet0.connectionType = "hostonly"
2023-09-19T17:43:15.755Z In(05) vmx DICT ethernet0.addressType = "generated"
2023-09-19T17:43:15.755Z In(05) vmx DICT ethernet0.virtualDev = "e1000e"
2023-09-19T17:43:15.756Z In(05) vmx DICT serial0.fileType = "thinprint"
2023-09-19T17:43:15.756Z In(05) vmx DICT serial0.fileName = "thinprint"
2023-09-19T17:43:15.756Z In(05) vmx DICT ethernet0.present = "TRUE"
2023-09-19T17:43:15.756Z In(05) vmx DICT serial0.present = "TRUE"
2023-09-19T17:43:15.756Z In(05) vmx DICT extendedConfigFile = "WinServer16.vmxf"
2023-09-19T17:43:15.756Z In(05) vmx DICT floppy0.present = "FALSE"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmxstats.filename = "WinServer16.scoreboard"
2023-09-19T17:43:15.756Z In(05) vmx DICT uuid.bios = "56 4d 30 bf 51 3d 13 c2-e2 3a ec 00 8c 33 c2 60"
2023-09-19T17:43:15.756Z In(05) vmx DICT uuid.location = "56 4d 30 bf 51 3d 13 c2-e2 3a ec 00 8c 33 c2 60"
2023-09-19T17:43:15.756Z In(05) vmx DICT vm.genid = "-2974115392001331012"
2023-09-19T17:43:15.756Z In(05) vmx DICT vm.genidX = "-7614778733248017338"
2023-09-19T17:43:15.756Z In(05) vmx DICT pciBridge0.pciSlotNumber = "17"
2023-09-19T17:43:15.756Z In(05) vmx DICT pciBridge4.pciSlotNumber = "21"
2023-09-19T17:43:15.756Z In(05) vmx DICT pciBridge5.pciSlotNumber = "22"
2023-09-19T17:43:15.756Z In(05) vmx DICT pciBridge6.pciSlotNumber = "23"
2023-09-19T17:43:15.756Z In(05) vmx DICT pciBridge7.pciSlotNumber = "24"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb.pciSlotNumber = "32"
2023-09-19T17:43:15.756Z In(05) vmx DICT ethernet0.pciSlotNumber = "160"
2023-09-19T17:43:15.756Z In(05) vmx DICT sound.pciSlotNumber = "33"
2023-09-19T17:43:15.756Z In(05) vmx DICT ehci.pciSlotNumber = "34"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb_xhci.pciSlotNumber = "192"
2023-09-19T17:43:15.756Z In(05) vmx DICT sata0.pciSlotNumber = "35"
2023-09-19T17:43:15.756Z In(05) vmx DICT nvme0.pciSlotNumber = "224"
2023-09-19T17:43:15.756Z In(05) vmx DICT nvme0:0.redo = ""
2023-09-19T17:43:15.756Z In(05) vmx DICT svga.vramSize = "268435456"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmotion.checkpointFBSize = "134217728"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmotion.checkpointSVGAPrimarySize = "268435456"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmotion.svga.mobMaxSize = "268435456"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmotion.svga.graphicsMemoryKB = "262144"
2023-09-19T17:43:15.756Z In(05) vmx DICT ethernet0.generatedAddress = "00:0C:29:33:C2:60"
2023-09-19T17:43:15.756Z In(05) vmx DICT ethernet0.generatedAddressOffset = "0"
2023-09-19T17:43:15.756Z In(05) vmx DICT vmci0.id = "-1942764960"
2023-09-19T17:43:15.756Z In(05) vmx DICT monitor.phys_bits_used = "45"
2023-09-19T17:43:15.756Z In(05) vmx DICT cleanShutdown = "FALSE"
2023-09-19T17:43:15.756Z In(05) vmx DICT softPowerOff = "FALSE"
2023-09-19T17:43:15.756Z In(05) vmx DICT checkpoint.vmState = "WinServer16-4d41b7ef.vmss"
2023-09-19T17:43:15.756Z In(05) vmx DICT tools.remindInstall = "TRUE"
2023-09-19T17:43:15.756Z In(05) vmx DICT gui.stretchGuestMode = "fullfill"
2023-09-19T17:43:15.756Z In(05) vmx DICT tools.upgrade.policy = "useGlobal"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb_xhci:4.present = "TRUE"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb_xhci:4.deviceType = "hid"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb_xhci:4.port = "4"
2023-09-19T17:43:15.756Z In(05) vmx DICT usb_xhci:4.parent = "-1"
2023-09-19T17:43:15.756Z In(05) vmx DICT --- USER DEFAULTS C:\Users\great computer\AppData\Roaming\VMware\config.ini
2023-09-19T17:43:15.756Z In(05) vmx DICT --- HOST DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.simplifiedUI = "no"
2023-09-19T17:43:15.756Z In(05) vmx DICT authd.client.port = "902"
2023-09-19T17:43:15.756Z In(05) vmx DICT authd.proxy.nfc = "vmware-hostd:ha-nfc"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled.epoch = "866"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.componentDownloadEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.dataCollectionEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.dataCollectionEnabled.epoch = "866"
2023-09-19T17:43:15.756Z In(05) vmx DICT --- SITE DEFAULTS C:\ProgramData\VMware\VMware Workstation\config.ini
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.simplifiedUI = "no"
2023-09-19T17:43:15.756Z In(05) vmx DICT authd.client.port = "902"
2023-09-19T17:43:15.756Z In(05) vmx DICT authd.proxy.nfc = "vmware-hostd:ha-nfc"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.autoSoftwareUpdateEnabled.epoch = "866"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.componentDownloadEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.dataCollectionEnabled = "yes"
2023-09-19T17:43:15.756Z In(05) vmx DICT installerDefaults.dataCollectionEnabled.epoch = "866"
2023-09-19T17:43:15.756Z In(05) vmx DICT --- GLOBAL SETTINGS C:\ProgramData\VMware\VMware Workstation\settings.ini
2023-09-19T17:43:15.756Z In(05) vmx DICT printers.enabled = "FALSE"
2023-09-19T17:43:15.757Z In(05) vmx Powering on guestOS 'windows2019srv-64' using the configuration for 'windows2019srv-64'.
2023-09-19T17:43:15.764Z In(05) vmx ToolsISO: open of C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig failed: Could not find the file
2023-09-19T17:43:15.764Z In(05) vmx ToolsISO: Unable to read signature file 'C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig', ignoring.
2023-09-19T17:43:15.765Z In(05) vmx ToolsISO: Updated cached value for imageName to 'windows.iso'.
2023-09-19T17:43:15.765Z In(05) vmx ToolsISO: Selected Tools ISO 'windows.iso' for 'windows2019srv-64' guest.
2023-09-19T17:43:15.771Z In(05) vmx DUMPER: Restoring checkpoint version 8.
2023-09-19T17:43:15.771Z In(05) vmx Checkpointed in VMware Workstation, 17.0.0, build-20800274, Windows Host
2023-09-19T17:43:15.771Z In(05) vmx Resuming virtual machine from C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16-4d41b7ef.vmss with 2048 MB of memory.
2023-09-19T17:43:15.771Z In(05) vmx Vix: [mainDispatch.c:4213]: VMAutomation_ReportPowerOpFinished: statevar=1, newAppState=1873, success=1 additionalError=0
2023-09-19T17:43:15.775Z In(05) vmx Monitor Mode: CPL0
2023-09-19T17:43:16.008Z In(05) vmx nvmeShared size: 3752, numAdapters: 1
2023-09-19T17:43:16.241Z In(05) vmx MemSched_EarlyPowerOn: balloon minGuestSize 209715 (80% of min required size 262144)
2023-09-19T17:43:16.242Z In(05) vmx OvhdMem_PowerOn: initial admission: paged 672909 nonpaged 40315 anonymous 6662
2023-09-19T17:43:16.242Z In(05) vmx VMMEM: Initial Reservation: 2812MB (MainMem=2048MB)
2023-09-19T17:43:16.242Z In(05) vmx numa: Hot-add is enabled and vNUMA hot-add is disabled, forcing UMA.
2023-09-19T17:43:16.242Z In(05) vmx llc: maximum vcpus per LLC: 1
2023-09-19T17:43:16.242Z In(05) vmx llc: vLLC size: 1
2023-09-19T17:43:16.246Z In(05) vmx MemSched: reserved mem (in MB) min 128 max 6312 recommended 6312
2023-09-19T17:43:16.246Z In(05) vmx MemSched: pg 672909 np 40315 anon 6662 mem 524288
2023-09-19T17:43:16.313Z In(05) vmx MemSched: numvm 1 locked pages: num 0 max 1607680
2023-09-19T17:43:16.313Z In(05) vmx MemSched: locked Page Limit: host 1888681 config 1615872
2023-09-19T17:43:16.313Z In(05) vmx MemSched: minmempct 50 minalloc 0 admitted 1
2023-09-19T17:43:16.350Z In(05) PowerNotifyThread VTHREAD 10808 "PowerNotifyThread"
2023-09-19T17:43:16.350Z In(05) PowerNotifyThread PowerNotify thread is alive.
2023-09-19T17:43:16.350Z In(05) vmx VMXSTATS: Registering 1 stats: vmx.logDropChars
2023-09-19T17:43:16.350Z In(05) vmx VMXSTATS: Registering 2 stats: vmx.logBytesLogged
2023-09-19T17:43:16.350Z In(05) vmx VMXSTATS: Registering 3 stats: vmx.numTimesLogDrop
2023-09-19T17:43:16.352Z In(05) vmx LICENSE using: 'HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Workstation\License.ws.17.0.e3.202208'
2023-09-19T17:43:16.353Z In(05) vthread-14812 VTHREAD 14812 "vthread-14812"
2023-09-19T17:43:16.354Z In(05) vmx Win32U_GetFileAttributes: GetFileAttributesExW("C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmpl", ...) failed, error: 2
2023-09-19T17:43:16.354Z In(05) vmx PolicyVMXFindPolicyKey: policy file does not exist.
2023-09-19T17:43:16.409Z In(05) vmx Win32U_GetFileAttributes: GetFileAttributesExW("C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmpl", ...) failed, error: 2
2023-09-19T17:43:16.410Z In(05) vmx PolicyVMXFindPolicyKey: policy file does not exist.
2023-09-19T17:43:16.448Z In(05) vmx Host PA size: 36 bits. Guest PA size: 45 bits.
2023-09-19T17:43:16.453Z In(05) vmx ToolsISO: Refreshing imageName for 'windows2019srv-64' (refreshCount=1, lastCount=1).
2023-09-19T17:43:16.453Z In(05) vmx ToolsISO: open of C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig failed: Could not find the file
2023-09-19T17:43:16.453Z In(05) vmx ToolsISO: Unable to read signature file 'C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig', ignoring.
2023-09-19T17:43:16.455Z In(05) vmx ToolsISO: Updated cached value for imageName to 'windows.iso'.
2023-09-19T17:43:16.455Z In(05) vmx ToolsISO: Selected Tools ISO 'windows.iso' for 'windows2019srv-64' guest.
2023-09-19T17:43:16.456Z In(05) deviceThread VTHREAD 6440 "deviceThread"
2023-09-19T17:43:16.456Z In(05) deviceThread Device thread is alive
2023-09-19T17:43:16.457Z In(05) vmx Host VT-x Capabilities:
2023-09-19T17:43:16.457Z In(05) vmx Basic VMX Information (0x00da040000000010)
2023-09-19T17:43:16.457Z In(05) vmx VMCS revision ID 16
2023-09-19T17:43:16.457Z In(05) vmx VMCS region length 1024
2023-09-19T17:43:16.457Z In(05) vmx VMX physical-address width natural
2023-09-19T17:43:16.457Z In(05) vmx SMM dual-monitor mode yes
2023-09-19T17:43:16.457Z In(05) vmx VMCS memory type WB
2023-09-19T17:43:16.457Z In(05) vmx Advanced INS/OUTS info yes
2023-09-19T17:43:16.457Z In(05) vmx True VMX MSRs yes
2023-09-19T17:43:16.457Z In(05) vmx Exception Injection ignores error code no
2023-09-19T17:43:16.457Z In(05) vmx True Pin-Based VM-Execution Controls (0x0000007f00000016)
2023-09-19T17:43:16.457Z In(05) vmx External-interrupt exiting {0,1}
2023-09-19T17:43:16.457Z In(05) vmx NMI exiting {0,1}
2023-09-19T17:43:16.457Z In(05) vmx Virtual NMIs {0,1}
2023-09-19T17:43:16.457Z In(05) vmx Activate VMX-preemption timer {0,1}
2023-09-19T17:43:16.457Z In(05) vmx Process posted interrupts { 0 }
2023-09-19T17:43:16.457Z In(05) vmx True Primary Processor-Based VM-Execution Controls (0xfff9fffe04006172)
2023-09-19T17:43:16.457Z In(05) vmx Interrupt-window exiting {0,1}
2023-09-19T17:43:16.457Z In(05) vmx Use TSC offsetting {0,1}
2023-09-19T17:43:16.457Z In(05) vmx HLT exiting {0,1}
2023-09-19T17:43:16.457Z In(05) vmx INVLPG exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx MWAIT exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx RDPMC exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx RDTSC exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx CR3-load exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx CR3-store exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Activate tertiary controls { 0 }
2023-09-19T17:43:16.458Z In(05) vmx CR8-load exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx CR8-store exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Use TPR shadow {0,1}
2023-09-19T17:43:16.458Z In(05) vmx NMI-window exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx MOV-DR exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Unconditional I/O exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Use I/O bitmaps {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Monitor trap flag {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Use MSR bitmaps {0,1}
2023-09-19T17:43:16.458Z In(05) vmx MONITOR exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx PAUSE exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Activate secondary controls {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Secondary Processor-Based VM-Execution Controls (0x000000ff00000000)
2023-09-19T17:43:16.458Z In(05) vmx Virtualize APIC accesses {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Enable EPT {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Descriptor-table exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Enable RDTSCP {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Virtualize x2APIC mode {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Enable VPID {0,1}
2023-09-19T17:43:16.458Z In(05) vmx WBINVD exiting {0,1}
2023-09-19T17:43:16.458Z In(05) vmx Unrestricted guest {0,1}
2023-09-19T17:43:16.458Z In(05) vmx APIC-register virtualization { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Virtual-interrupt delivery { 0 }
2023-09-19T17:43:16.458Z In(05) vmx PAUSE-loop exiting { 0 }
2023-09-19T17:43:16.458Z In(05) vmx RDRAND exiting { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Enable INVPCID { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Enable VM Functions { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Use VMCS shadowing { 0 }
2023-09-19T17:43:16.458Z In(05) vmx ENCLS exiting { 0 }
2023-09-19T17:43:16.458Z In(05) vmx RDSEED exiting { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Enable PML { 0 }
2023-09-19T17:43:16.458Z In(05) vmx EPT-violation #VE { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Conceal VMX from PT { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Enable XSAVES/XRSTORS { 0 }
2023-09-19T17:43:16.458Z In(05) vmx PASID translation { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Mode-based execute control for EPT { 0 }
2023-09-19T17:43:16.458Z In(05) vmx Sub-page write permissions for EPT { 0 }
2023-09-19T17:43:16.459Z In(05) vmx PT uses guest physical addresses { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Use TSC scaling { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Enable UMWAIT and TPAUSE { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Enable ENCLV in VMX non-root mode { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Enable EPC Virtualization Extensions { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Bus lock exiting { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Notification VM exits { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Tertiary Processor-Based VM-Execution Controls (0x0000000000000000)
2023-09-19T17:43:16.459Z In(05) vmx LOADIWKEY exiting no
2023-09-19T17:43:16.459Z In(05) vmx Enable HLAT no
2023-09-19T17:43:16.459Z In(05) vmx Enable Paging-Write no
2023-09-19T17:43:16.459Z In(05) vmx Enable Guest Paging Verification no
2023-09-19T17:43:16.459Z In(05) vmx Enable IPI Virtualization no
2023-09-19T17:43:16.459Z In(05) vmx True VM-Exit Controls (0x007fffff00036dfb)
2023-09-19T17:43:16.459Z In(05) vmx Save debug controls {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Host address-space size {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_PERF_GLOBAL_CTRL {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Acknowledge interrupt on exit {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Save IA32_PAT {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_PAT {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Save IA32_EFER {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_EFER {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Save VMX-preemption timer {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Clear IA32_BNDCFGS { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Conceal VMX from processor trace { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Clear IA32_RTIT MSR { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Clear IA32_LBR_CTL MSR { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Clear user-interrupt notification vector { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load CET state { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load PKRS { 0 }
2023-09-19T17:43:16.459Z In(05) vmx True VM-Entry Controls (0x0000ffff000011fb)
2023-09-19T17:43:16.459Z In(05) vmx Load debug controls {0,1}
2023-09-19T17:43:16.459Z In(05) vmx IA-32e mode guest {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Entry to SMM {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Deactivate dual-monitor mode {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_PERF_GLOBAL_CTRL {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_PAT {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_EFER {0,1}
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_BNDCFGS { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Conceal VMX from processor trace { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_RTIT MSR { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load user-interrupt notification vector { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load CET state { 0 }
2023-09-19T17:43:16.459Z In(05) vmx Load IA32_LBR_CTL MSR { 0 }
2023-09-19T17:43:16.460Z In(05) vmx Load PKRS { 0 }
2023-09-19T17:43:16.460Z In(05) vmx VPID and EPT Capabilities (0x00000f0106114141)
2023-09-19T17:43:16.460Z In(05) vmx R=0/W=0/X=1 yes
2023-09-19T17:43:16.460Z In(05) vmx Page-walk length 3 yes
2023-09-19T17:43:16.460Z In(05) vmx EPT memory type WB yes
2023-09-19T17:43:16.460Z In(05) vmx 2MB super-page yes
2023-09-19T17:43:16.460Z In(05) vmx 1GB super-page no
2023-09-19T17:43:16.460Z In(05) vmx INVEPT support yes
2023-09-19T17:43:16.460Z In(05) vmx Access & Dirty Bits no
2023-09-19T17:43:16.460Z In(05) vmx Advanced VM exit information for EPT violations no
2023-09-19T17:43:16.460Z In(05) vmx Supervisor shadow-stack control no
2023-09-19T17:43:16.460Z In(05) vmx Type 1 INVEPT yes
2023-09-19T17:43:16.460Z In(05) vmx Type 2 INVEPT yes
2023-09-19T17:43:16.460Z In(05) vmx INVVPID support yes
2023-09-19T17:43:16.460Z In(05) vmx Type 0 INVVPID yes
2023-09-19T17:43:16.460Z In(05) vmx Type 1 INVVPID yes
2023-09-19T17:43:16.460Z In(05) vmx Type 2 INVVPID yes
2023-09-19T17:43:16.460Z In(05) vmx Type 3 INVVPID yes
2023-09-19T17:43:16.460Z In(05) vmx Miscellaneous VMX Data (0x00000000100401e5)
2023-09-19T17:43:16.460Z In(05) vmx TSC to preemption timer ratio 5
2023-09-19T17:43:16.460Z In(05) vmx VM-Exit saves EFER.LMA yes
2023-09-19T17:43:16.460Z In(05) vmx Activity State HLT yes
2023-09-19T17:43:16.460Z In(05) vmx Activity State shutdown yes
2023-09-19T17:43:16.460Z In(05) vmx Activity State wait-for-SIPI yes
2023-09-19T17:43:16.460Z In(05) vmx Processor trace in VMX no
2023-09-19T17:43:16.460Z In(05) vmx RDMSR SMBASE MSR in SMM no
2023-09-19T17:43:16.460Z In(05) vmx CR3 targets supported 4
2023-09-19T17:43:16.460Z In(05) vmx Maximum MSR list size 512
2023-09-19T17:43:16.460Z In(05) vmx VMXOFF holdoff of SMIs yes
2023-09-19T17:43:16.460Z In(05) vmx Allow all VMWRITEs no
2023-09-19T17:43:16.460Z In(05) vmx Allow zero instruction length no
2023-09-19T17:43:16.460Z In(05) vmx MSEG revision ID 0
2023-09-19T17:43:16.460Z In(05) vmx VMX-Fixed Bits in CR0 (0x0000000080000021/0x00000000ffffffff)
2023-09-19T17:43:16.460Z In(05) vmx Fixed to 0 0xffffffff00000000
2023-09-19T17:43:16.460Z In(05) vmx Fixed to 1 0x0000000080000021
2023-09-19T17:43:16.460Z In(05) vmx Variable 0x000000007fffffde
2023-09-19T17:43:16.460Z In(05) vmx VMX-Fixed Bits in CR4 (0x0000000000002000/0x00000000000667ff)
2023-09-19T17:43:16.460Z In(05) vmx Fixed to 0 0xfffffffffff99800
2023-09-19T17:43:16.461Z In(05) vmx Fixed to 1 0x0000000000002000
2023-09-19T17:43:16.461Z In(05) vmx Variable 0x00000000000647ff
2023-09-19T17:43:16.461Z In(05) vmx VMCS Enumeration (0x000000000000002a)
2023-09-19T17:43:16.461Z In(05) vmx Highest index 0x15
2023-09-19T17:43:16.461Z In(05) vmx VM Functions (0x0000000000000000)
2023-09-19T17:43:16.461Z In(05) vmx Monitor_PowerOn: hostedVSMPMaxSkew is 1500 us (5551500 cycles)
2023-09-19T17:43:16.463Z In(05) vmx vmm-modules: [vmm.vmm, vmce-vmce.vmm, viommu-none.vmm, vprobe-none.vmm, hv-vt.vmm, gphys-ept.vmm, callstack-none.vmm, gi-none.vmm, gmm-none.vmm, ahci-ahci.vmm, nvme-nvme.vmm, !nvmeShared=0x0, !ahciShared=0xec0, !e1000Shared=0x1ac0, !tdxSharedVMData=0x2340, !vmSamples=0x2340, !theIOSpace=0x2380, !ttGPPerVcpu=0x9180, {UseUnwind}=0x0, numVCPUsAsAddr=0x2, {SharedAreaReservations}=0x91c0, {rodataSize}=0x2194d, {textAddr}=0xfffffffffc000000, {textSize}=0x919f2, <MonSrcFile>]
2023-09-19T17:43:16.463Z In(05) vmx vmm-vcpus: 2
2023-09-19T17:43:16.549Z In(05) vmx KHZEstimate 3701000
2023-09-19T17:43:16.549Z In(05) vmx MHZEstimate 3701
2023-09-19T17:43:16.549Z In(05) vmx NumVCPUs 2
2023-09-19T17:43:16.552Z In(05) vmx AIOGNRC: numThreads=1 ide=0, scsi=0, passthru=0
2023-09-19T17:43:16.552Z In(05) vmx WORKER: Creating new group with maxThreads=1 (1)
2023-09-19T17:43:16.561Z In(05) vmx WORKER: Creating new group with maxThreads=1 (2)
2023-09-19T17:43:16.561Z In(05) vmx MainMem: CPT Host WZ=0 PF=2048 D=0
2023-09-19T17:43:16.561Z In(05) vmx MainMem: CPT PLS=1 PLR=1 BS=1 BlkP=32 Mult=4 W=50
2023-09-19T17:43:16.562Z In(05) vmx MStat: Creating Stat vm.uptime
2023-09-19T17:43:16.562Z In(05) vmx MStat: Creating Stat vm.suspendTime
2023-09-19T17:43:16.562Z In(05) vmx MStat: Creating Stat vm.powerOnTimeStamp
2023-09-19T17:43:16.562Z In(05) aioCompletion VTHREAD 6896 "aioCompletion"
2023-09-19T17:43:16.562Z In(05) vmx VMXAIOMGR: Using: simple=Compl
2023-09-19T17:43:16.572Z In(05) vmx WORKER: Creating new group with maxThreads=1 (3)
2023-09-19T17:43:16.585Z In(05) vmx WORKER: Creating new group with maxThreads=14 (17)
2023-09-19T17:43:16.588Z In(05) vmx FeatureCompat: No VM masks.
2023-09-19T17:43:16.588Z In(05) vmx TimeTracker host to guest rate conversion 4110917516 @ 3701000000Hz -> 0 @ 3701000000Hz
2023-09-19T17:43:16.588Z In(05) vmx TimeTracker host to guest rate conversion ((x * 2147483648) >> 31) + -4110917516
2023-09-19T17:43:16.588Z In(05) vmx Disabling TSC scaling since host does not support it.
2023-09-19T17:43:16.588Z In(05) vmx TSC offsetting enabled.
2023-09-19T17:43:16.588Z In(05) vmx timeTracker.globalProgressMaxAllowanceMS: 2000
2023-09-19T17:43:16.588Z In(05) vmx timeTracker.globalProgressToAllowanceNS: 1000
2023-09-19T17:43:16.588Z In(05) vmx MKS PowerOn
2023-09-19T17:43:16.592Z In(05) mks VTHREAD 5884 "mks"
2023-09-19T17:43:16.592Z In(05) mks MKS thread is alive
2023-09-19T17:43:16.593Z In(05) svga VTHREAD 11648 "svga"
2023-09-19T17:43:16.593Z In(05) svga SVGA thread is alive
2023-09-19T17:43:16.593Z In(05) mks MKS: SSE2=1, SSSE3=1, SSE4_1=1
2023-09-19T17:43:16.605Z In(05) mouse VTHREAD 2052 "mouse"
2023-09-19T17:43:16.606Z In(05) kbh VTHREAD 14904 "kbh"
2023-09-19T17:43:16.609Z In(05) mks MKS Win32: Registering top level window (0x10700) to receive session change notification.
2023-09-19T17:43:16.610Z In(05) mks Current Display Settings:
2023-09-19T17:43:16.610Z In(05) mks Display: 0 size: 1366x768 position: (0, 0) name: \\.\DISPLAY1
2023-09-19T17:43:16.611Z In(05) mks MKS Win32: MIL: 0x4000
2023-09-19T17:43:16.611Z In(05) mks MKS-RenderMain: PowerOn allowed MKSBasicOps
2023-09-19T17:43:16.611Z In(05) mks MKS-RenderMain: ISB enabled by config
2023-09-19T17:43:16.611Z In(05) mks MKS-RenderMain: Collecting RenderOps caps from MKSBasicOps
2023-09-19T17:43:16.611Z In(05) mks MKS-RenderMain: Starting MKSBasicOps
2023-09-19T17:43:16.611Z In(05) mks MKS-RenderMain: Started MKSBasicOps
2023-09-19T17:43:16.612Z In(05) mks MKS-RenderMain: Found Full Renderer: MKSBasicOps
2023-09-19T17:43:16.612Z In(05) mks MKS-RenderMain: maxTextureSize=32768
2023-09-19T17:43:16.615Z In(05) mks KHBKL: Unable to parse keystring at: ''
2023-09-19T17:43:16.615Z In(05) mks MKSRemoteMgr: Set default display name: WinServer16
2023-09-19T17:43:16.615Z In(05) mks MKSRemoteMgr: Loading VNC Configuration from VM config file
2023-09-19T17:43:16.615Z In(05) mks MKSRemoteMgr: Using default VNC keymap table "us"
2023-09-19T17:43:16.615Z In(05) vmx VLANCE: send cluster threshold is 80, size = 2 recalcInterval is 20000 us
2023-09-19T17:43:16.616Z In(05) vmx VMXNET: send cluster threshold is 80, size = 2 recalcInterval is 20000 ticks, dontClusterSize is 128
2023-09-19T17:43:16.617Z In(05) vmx Chipset version: 0x17
2023-09-19T17:43:16.618Z In(05) vmx The EFI ROM is EFI2.7 64-bit.
2023-09-19T17:43:16.629Z In(05) vmx SOUNDLIB: Creating the Wave sound backend.
2023-09-19T17:43:16.661Z No(00) vmx ConfigDB: Setting pciBridge4.pciSlotNumber = "-1"
2023-09-19T17:43:16.661Z No(00) vmx ConfigDB: Setting pciBridge5.pciSlotNumber = "-1"
2023-09-19T17:43:16.661Z No(00) vmx ConfigDB: Setting pciBridge6.pciSlotNumber = "-1"
2023-09-19T17:43:16.661Z No(00) vmx ConfigDB: Setting pciBridge7.pciSlotNumber = "-1"
2023-09-19T17:43:16.662Z No(00) vmx ConfigDB: Setting pciBridge4.pciSlotNumber = "21"
2023-09-19T17:43:16.662Z No(00) vmx ConfigDB: Setting pciBridge5.pciSlotNumber = "22"
2023-09-19T17:43:16.662Z No(00) vmx ConfigDB: Setting pciBridge6.pciSlotNumber = "23"
2023-09-19T17:43:16.662Z No(00) vmx ConfigDB: Setting pciBridge7.pciSlotNumber = "24"
2023-09-19T17:43:16.677Z In(05) vmx MigrateBusMemPrealloc: BusMem preallocation begins.
2023-09-19T17:43:16.677Z In(05) vmx MigrateBusMemPrealloc: BusMem preallocation completes.
2023-09-19T17:43:16.678Z No(00) vmx ConfigDB: Setting nvme0:0.redo = ""
2023-09-19T17:43:16.678Z In(05) vmx DISK: OPEN nvme0:0 'C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmdk' persistent R[]
2023-09-19T17:43:16.709Z In(05) vmx DISKLIB-LIB_MISC : DiskLib_GetStorageBlockSizes: Failed to get storage block sizes, The virtual disk requires a feature not supported by this program.
2023-09-19T17:43:16.710Z In(05) vmx DiskGetGeometry: Reading of disk partition table
2023-09-19T17:43:16.711Z In(05) vmx DISK: Disk 'C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmdk' has UUID '60 00 c2 9c c3 a6 4f 9d-af 7b a3 70 02 66 ef ba'
2023-09-19T17:43:16.711Z In(05) vmx DISK: OPEN 'C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmdk' Geo (5221/255/63) BIOS Geo (0/0/0)
2023-09-19T17:43:16.718Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.722Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.726Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.729Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.733Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.737Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.740Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.744Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.748Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.751Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.754Z In(05) vmx DISKUTILWIN32: DiskUtilW32IsATASSDDevice: Reported rotation rate = 1
2023-09-19T17:43:16.754Z In(05) vmx DISK: DiskConfigureVirtualSSD: Disk 'nvme0:0' identified as Virtual SSD device.
2023-09-19T17:43:16.754Z In(05) vmx DISK: Opening disks took 76 ms.
2023-09-19T17:43:16.755Z In(05) vmx USBArbLib: USBArbLib initialized successfully, retryIntervalStart(5), retryIntervalMax(120), arbSocketName(\\.\pipe\vmware-usbarbpipe), useLocking(yes), tryUpgrading(no).
2023-09-19T17:43:16.756Z In(05) vmx UsbEnum: Initializing UsbEnum library, disableLocking(no), allowBootableHid(yes).
2023-09-19T17:43:16.756Z In(05) vmx USB: Initializing 'Virtual Hub' backend
2023-09-19T17:43:16.757Z In(05) vmx USB: Initializing 'Generic' backend
2023-09-19T17:43:16.757Z Wa(03) vmx USBArbLib: OUT SET_AUTO_CONNECT: Not connected to arbitrator, autoconnect(0) for client 'WinServer16', connectState(1).
2023-09-19T17:43:16.757Z In(05) vmx USB: Initializing 'Virtual HID' backend
2023-09-19T17:43:16.758Z In(05) sensorThread VTHREAD 3648 "sensorThread"
2023-09-19T17:43:16.758Z In(05) vmx USB: Initializing 'Remote Device' backend
2023-09-19T17:43:16.758Z In(05) vmx RemoteUSBVMX: Retrieved hostId [94 02 de 03 80 04 8a 05-fe 06 83 07 00 08 00 09]
2023-09-19T17:43:16.758Z In(05) vmx RemoteUSBVMX: Protocol version min:15 current:19
2023-09-19T17:43:16.758Z In(05) vmx RemoteUSBVMX: no delay setting is TRUE.
2023-09-19T17:43:16.758Z In(05) vmx USB: Initializing 'Virtual Mass Storage' backend
2023-09-19T17:43:16.758Z In(05) vmx USB: Initializing 'Virtual RNG' backend
2023-09-19T17:43:16.758Z In(05) vmx USB: Initializing 'Virtual CCID' backend
2023-09-19T17:43:16.760Z In(05) vmx USB-CCID: Could not establish context: SCARD_E_NO_SERVICE(0x8010001d).
2023-09-19T17:43:16.761Z In(05) vmx USB-CCID: Could not establish context: SCARD_E_NO_SERVICE(0x8010001d).
2023-09-19T17:43:16.770Z In(05) usbCCIDEnumCards VTHREAD 4232 "usbCCIDEnumCards"
2023-09-19T17:43:16.770Z In(05) usbCCIDEnumCards USB-CCID: Card enum thread created.
2023-09-19T17:43:16.770Z In(05) vmx USB: Initializing 'Virtual Bluetooth' backend
2023-09-19T17:43:16.770Z In(05) vmx USB: Initializing 'Virtual Audio' backend
2023-09-19T17:43:16.770Z In(05) vmx USB: Initializing 'Virtual Video' backend
2023-09-19T17:43:16.780Z Wa(03) vmx USBGW: IOCTL_STORAGE_QUERY_PROPERTY failed. Error(0x0): The operation completed successfully.
2023-09-19T17:43:16.780Z In(05) vmx USBGW: Skipping disk backing for path(C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmx).
2023-09-19T17:43:16.781Z Wa(03) vmx USBGW: IOCTL_STORAGE_QUERY_PROPERTY failed. Error(0x0): The operation completed successfully.
2023-09-19T17:43:16.781Z In(05) vmx USBGW: Skipping disk backing for path(C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmdk).
2023-09-19T17:43:16.782Z Wa(03) vmx USBGW: IOCTL_STORAGE_QUERY_PROPERTY failed. Error(0x0): The operation completed successfully.
2023-09-19T17:43:16.782Z In(05) vmx USBGW: Skipping disk backing for path(C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.vmsd).
2023-09-19T17:43:16.783Z Wa(03) vmx USBGW: IOCTL_STORAGE_QUERY_PROPERTY failed. Error(0x0): The operation completed successfully.
2023-09-19T17:43:16.783Z In(05) vmx USBGW: Skipping disk backing for path(C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16.nvram).
2023-09-19T17:43:16.783Z In(05) usbCCIDEnumCards USB-CCID: Could not establish context: SCARD_E_NO_SERVICE(0x8010001d).
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: Config settings: autodetect=1, numDisplays=1, maxWidth=2560, maxHeight=1600
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: Desired maximum display topology: wh(6688, 5016)
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: Autodetected target gfbSize = 268435456
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: Using Initial gfbSize = 134217728
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: MaxPrimaryMem register = 268435456
2023-09-19T17:43:16.795Z In(05) vmx SVGA-GFB: Max wh(6688, 5016), number of displays: 10
2023-09-19T17:43:16.795Z In(05) vmx SVGA: SVGA DeviceLabel: svga2
2023-09-19T17:43:16.795Z No(00) vmx ConfigDB: Setting vmotion.svga.mobMaxSize = "268435456"
2023-09-19T17:43:16.795Z No(00) vmx ConfigDB: Setting vmotion.svga.graphicsMemoryKB = "262144"
2023-09-19T17:43:16.795Z In(05) vmx SVGA: mobMaxSize=268435456
2023-09-19T17:43:16.795Z In(05) vmx SVGA: graphicsMemoryKB=262144
2023-09-19T17:43:16.795Z In(05) vmx SVGA: FIFO capabilities 0x0000077f
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.supports3D bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.baseCapsLevel num 11
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.maxPointSize num 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.maxTextureSize num 32768
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.maxVolumeExtent num 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.maxTextureAnisotropy num 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.lineStipple bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.dxMaxConstantBuffers num 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.dxProvokingVertex bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.sm41 bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.multisample2x bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.multisample4x bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.msFullQuality bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.logicOps bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.bc67 num 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.sm5 bool 0
2023-09-19T17:43:16.795Z In(05) vmx SVGAFeature renderer (before clamping) svga.multisample8x bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (before clamping) svga.logicBlendOps bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (before clamping) svga.maxForcedSampleCount num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (before clamping) svga.gl43 bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.supports3D bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.baseCapsLevel num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.maxPointSize num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.maxTextureSize num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.maxVolumeExtent num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.maxTextureAnisotropy num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.lineStipple bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.dxMaxConstantBuffers num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.dxProvokingVertex bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.sm41 bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.multisample2x bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.multisample4x bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.msFullQuality bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.logicOps bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.bc67 num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.sm5 bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.multisample8x bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.logicBlendOps bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.maxForcedSampleCount num 0
2023-09-19T17:43:16.796Z In(05) vmx SVGAFeature renderer (after clamping) svga.gl43 bool 0
2023-09-19T17:43:16.796Z In(05) vmx SVGA3dClamp: Renderer Provides BC67Level: 0 ( 0, 0)
2023-09-19T17:43:16.796Z In(05) vmx SVGA3dClamp: Renderer Provides BaseCapsLevel: 0 ( 0, 0)
2023-09-19T17:43:16.796Z In(05) vmx SVGA3dClamp: Renderer Provides ClampLevel: 0 ( 0, 0)
2023-09-19T17:43:16.797Z In(05) vmx SVGA3dCaps: host, at power on (3d disabled)
2023-09-19T17:43:16.797Z In(05) vmx cap[ 19]: 0x00002000 (MAX_TEXTURE_WIDTH)
2023-09-19T17:43:16.797Z In(05) vmx cap[ 20]: 0x00002000 (MAX_TEXTURE_HEIGHT)
2023-09-19T17:43:16.797Z In(05) vmx cap[ 93]: 0x00000001 (TS_COLOR_KEY)
2023-09-19T17:43:16.797Z In(05) vmx SVGA3dClamp: Host Provides BC67Level: 0 ( 0, 0)
2023-09-19T17:43:16.797Z In(05) vmx SVGA3dClamp: Host Provides BaseCapsLevel: 0 ( 0, 4)
2023-09-19T17:43:16.797Z In(05) vmx SVGA3dClamp: Host Provides ClampLevel: 0 ( 0, 0)
2023-09-19T17:43:16.798Z In(05) vmx USB: Initializing 'UHCI' host controller
2023-09-19T17:43:16.806Z In(05) vmx Ethernet0 MAC Address: 00:0c:29:33:c2:60
2023-09-19T17:43:16.808Z In(05) vmx USB: Initializing 'EHCI' host controller
2023-09-19T17:43:16.808Z In(05) vmx USB: Initializing 'xHCI' host controller
2023-09-19T17:43:16.809Z In(05) vmx PCIXHCI: SuperSpeedPlus(USB3.1) is supported by xhci.
2023-09-19T17:43:16.809Z No(00) vmx ConfigDB: Setting usb_xhci:4.present = "TRUE"
2023-09-19T17:43:16.809Z No(00) vmx ConfigDB: Setting usb_xhci:4.deviceType = "hid"
2023-09-19T17:43:16.809Z No(00) vmx ConfigDB: Setting usb_xhci:4.port = "4"
2023-09-19T17:43:16.809Z No(00) vmx ConfigDB: Setting usb_xhci:4.parent = "-1"
2023-09-19T17:43:16.819Z No(00) vmx ConfigDB: Setting vmci0.id = "-1942764960"
2023-09-19T17:43:16.827Z In(05) vmx AHCI:Successfully created adapter 'sata0' as num 0
2023-09-19T17:43:16.828Z In(05) vmx SCSI DEVICE (sata0:1): Computed value of sata0:1.useBounceBuffers: default
2023-09-19T17:43:16.828Z In(05) vmx DISKUTIL: sata0:1 : capacity=0 logical sector size=2048
2023-09-19T17:43:16.828Z In(05) vmx DISKUTIL: sata0:1 : geometry=0/0/0
2023-09-19T17:43:16.828Z In(05) vmx AHCI:Creating ATAPI CDROM on SATA adapter.
2023-09-19T17:43:16.828Z In(05) vmx AHCI:Successfully created device: sata0:1
2023-09-19T17:43:16.828Z In(05) vmx SCSI: nvme0: intr coalescing: on period=50msec cifTh=4 iopsTh=2000 hlt=0
2023-09-19T17:43:16.828Z In(05) vmx NVME-CORE: nvme0: useDeviceThread=1
2023-09-19T17:43:16.828Z In(05) vmx SCSI10: UNTAGGED commands will be converted to ORDER tags.
2023-09-19T17:43:16.829Z In(05) vmx NVME-CORE: Doing a full reset of controller regs and queues.
2023-09-19T17:43:16.829Z In(05) vmx NVME-CORE:Successfully created adapter 'nvme0' as num 0
2023-09-19T17:43:16.829Z In(05) vmx NVME-CORE:Creating Hard Disk (devIdx:0) on NVME adapter.
2023-09-19T17:43:16.829Z In(05) vmx SCSI DEVICE (nvme0:0): Computed value of nvme0:0.useBounceBuffers: default
2023-09-19T17:43:16.829Z In(05) vmx DISKUTIL: nvme0:0 : capacity=83886080 logical sector size=512
2023-09-19T17:43:16.829Z In(05) vmx DISKUTIL: nvme0:0 : geometry=5221/255/63
2023-09-19T17:43:16.829Z In(05) vmx NVME-CORE:Successfully created device: nvme0:0
2023-09-19T17:43:16.833Z In(05) vmx WORKER: Creating new group with maxThreads=1 (18)
2023-09-19T17:43:16.833Z In(05) vmx DISKUTIL: (null) : max toolsVersion = 0, type = 0
2023-09-19T17:43:16.833Z In(05) vmx DISKUTIL: Offline toolsVersion = 0, type = 0
2023-09-19T17:43:16.833Z In(05) vmx TOOLS setting legacy tools version to '0' type 0, manifest status is 9
2023-09-19T17:43:16.833Z In(05) vmx ToolsISO: Refreshing imageName for 'windows2019srv-64' (refreshCount=1, lastCount=1).
2023-09-19T17:43:16.833Z In(05) vmx ToolsISO: open of C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig failed: Could not find the file
2023-09-19T17:43:16.833Z In(05) vmx ToolsISO: Unable to read signature file 'C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig', ignoring.
2023-09-19T17:43:16.834Z In(05) vmx ToolsISO: Updated cached value for imageName to 'windows.iso'.
2023-09-19T17:43:16.834Z In(05) vmx ToolsISO: Selected Tools ISO 'windows.iso' for 'windows2019srv-64' guest.
2023-09-19T17:43:16.834Z In(05) vmx TOOLS updated cached value for isoImageExists to 1.
2023-09-19T17:43:16.834Z In(05) vmx VMXVmdb_SetToolsVersionStatus: status value set to 'noTools', 'noTools', install possible
2023-09-19T17:43:16.835Z In(05) vmx ToolsISO: Refreshing imageName for 'windows2019srv-64' (refreshCount=1, lastCount=1).
2023-09-19T17:43:16.835Z In(05) vmx ToolsISO: open of C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig failed: Could not find the file
2023-09-19T17:43:16.835Z In(05) vmx ToolsISO: Unable to read signature file 'C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig', ignoring.
2023-09-19T17:43:16.835Z In(05) vmx ToolsISO: Updated cached value for imageName to 'windows.iso'.
2023-09-19T17:43:16.835Z In(05) vmx ToolsISO: Selected Tools ISO 'windows.iso' for 'windows2019srv-64' guest.
2023-09-19T17:43:16.835Z In(05) vmx TOOLS updated cached value for isoImageExists to 1.
2023-09-19T17:43:16.835Z In(05) vmx VMXVmdb_SetToolsVersionStatus: status value set to 'noTools', 'noTools', install possible
2023-09-19T17:43:16.836Z In(05) vmx Tools: sending 'OS_Resume' (state = 4) state change request
2023-09-19T17:43:16.836Z In(05) vmx Tools: Delaying state change request to state 4.
2023-09-19T17:43:16.836Z In(05) vmx ToolsISO: Refreshing imageName for 'windows2019srv-64' (refreshCount=1, lastCount=1).
2023-09-19T17:43:16.836Z In(05) vmx ToolsISO: open of C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig failed: Could not find the file
2023-09-19T17:43:16.836Z In(05) vmx ToolsISO: Unable to read signature file 'C:\Program Files (x86)\VMware\VMware Workstation\isoimages_manifest.txt.sig', ignoring.
2023-09-19T17:43:16.837Z In(05) vmx ToolsISO: Updated cached value for imageName to 'windows.iso'.
2023-09-19T17:43:16.837Z In(05) vmx ToolsISO: Selected Tools ISO 'windows.iso' for 'windows2019srv-64' guest.
2023-09-19T17:43:16.837Z In(05) vmx MsgHint: msg.tools.toolsReminder
2023-09-19T17:43:16.837Z In(05)+ vmx Install the VMware Tools package inside this virtual machine. After the guest operating system starts, select VM > Install VMware Tools… and follow the instructions.
2023-09-19T17:43:16.837Z In(05)+ vmx ---------------------------------------
2023-09-19T17:43:16.863Z In(05) vmx TOOLS INSTALL initializing state to IDLE on power on.
2023-09-19T17:43:16.863Z In(05) vmx TOOLS INSTALL updating Rpc handlers registration.
2023-09-19T17:43:16.863Z In(05) vmx TOOLS INSTALL register RPC: upgrader.setGuestFileRoot
2023-09-19T17:43:16.864Z In(05) vmx TOOLS INSTALL register RPC: toolinstall.is_image_inserted
2023-09-19T17:43:16.864Z In(05) vmx TOOLS INSTALL register RPC: toolinstall.installerActive
2023-09-19T17:43:16.864Z In(05) vmx TOOLS INSTALL register RPC: guest.upgrader_send_cmd_line_args
2023-09-19T17:43:16.864Z In(05) vmx P9FS_PowerOn: 9PFS server is not enabled.
2023-09-19T17:43:16.865Z In(05) vmx HgfsServerManagerVigorInit: Initialize: dev api
2023-09-19T17:43:16.865Z In(05) vmx MKSVMX: Copy/paste enabled = 1
2023-09-19T17:43:16.866Z In(05) vmx DEPLOYPKG: No pending deploy package name set
2023-09-19T17:43:16.866Z In(05) vmx DEPLOYPKG: ToolsDeployPkgPublishState: state=0, code=0, message=(null)
2023-09-19T17:43:16.876Z In(05) vmx MonPmc: ctrBase 0x4c1 selBase 0x186/1 PGC 1/1 SMM 1 drain 1 AMD 0
2023-09-19T17:43:16.876Z In(05)+ vmx MonPmc: gen counters num: 8 width 48 write width 48
2023-09-19T17:43:16.876Z In(05)+ vmx MonPmc: fix counters num: 3 width 48; version 3
2023-09-19T17:43:16.876Z In(05)+ vmx MonPmc: unavailable counters: 0
2023-09-19T17:43:16.877Z In(05) vmx CPT: Restoring checkpoint C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16-4d41b7ef.vmss
2023-09-19T17:43:16.878Z In(05) vmx DUMPER: Restoring checkpoint version 8.
2023-09-19T17:43:16.880Z In(05) vmx PStrIntern expansion: nBkts=256
2023-09-19T17:43:16.880Z In(05) vmx Progress -1% (msg.checkpoint.restoreStatus)
2023-09-19T17:43:16.881Z In(05) vmx restoring GuestVars
2023-09-19T17:43:16.881Z In(05) vmx restoring A20
2023-09-19T17:43:16.881Z In(05) vmx restoring BusMemSample
2023-09-19T17:43:16.881Z In(05) vmx restoring UUIDVMX
2023-09-19T17:43:16.881Z In(05) vmx restoring memory
2023-09-19T17:43:16.890Z In(05) vmx MainMem: Opened paging file, 'C:\Users\great computer\Documents\Virtual Machines\WinServer16\WinServer16-4d41b7ef.vmem'.
2023-09-19T17:43:16.891Z In(05) vmx MemSched: caller 0 numvm 1 locked pages: num 1482 max 1607680
2023-09-19T17:43:16.891Z In(05) vmx MemSched: locked Page Limit: host 1887194 config 1615872
2023-09-19T17:43:16.891Z In(05) vmx MemSched: minmempct 50 timestamp 40710
2023-09-19T17:43:16.891Z In(05) vmx MemSched: VM 0 min 309121 max 571265 shares 524288 paged 672909 nonpaged 40315 anonymous 6662 locked 1482 touchedPct 0 dirtiedPct 0 timestamp 40710 vmResponsive is 1
2023-09-19T17:43:16.891Z In(05) vmx MemSched: locked 1482 target 571265 balloon 0 0 0 swapped 0 0 allocd 0 512 state 0 100
2023-09-19T17:43:16.891Z In(05) vmx MemSched: states: 0 1 : 1 0 : 2 0 : 3 0
2023-09-19T17:43:16.891Z In(05) vmx MemSched: Balloon enabled 1 guestType 0 maxSize 0
2023-09-19T17:43:16.893Z In(05) vmx Progress 0% (none)
2023-09-19T17:43:17.032Z In(05) vmx Progress 1% (none)
2023-09-19T17:43:17.163Z In(05) vmx Progress 2% (none)
2023-09-19T17:43:17.299Z In(05) vmx Progress 3% (none)
2023-09-19T17:43:17.431Z In(05) vmx Progress 4% (none)
2023-09-19T17:43:17.559Z In(05) vmx Progress 5% (none)
2023-09-19T17:43:17.689Z In(05) vmx Progress 6% (none)
2023-09-19T17:43:17.873Z In(05) vmx Progress 7% (none)
2023-09-19T17:43:18.022Z In(05) vmx Progress 8% (none)
2023-09-19T17:43:18.156Z In(05) vmx Progress 9% (none)
2023-09-19T17:43:18.291Z In(05) vmx Progress 10% (none)
2023-09-19T17:43:18.424Z In(05) vmx Progress 11% (none)
2023-09-19T17:43:18.558Z In(05) vmx Progress 12% (none)
2023-09-19T17:43:18.695Z In(05) vmx Progress 13% (none)
2023-09-19T17:43:18.830Z In(05) vmx Progress 14% (none)
2023-09-19T17:43:18.960Z In(05) vmx Progress 15% (none)
2023-09-19T17:43:19.094Z In(05) vmx Progress 16% (none)
2023-09-19T17:43:19.225Z In(05) vmx Progress 17% (none)
2023-09-19T17:43:19.357Z In(05) vmx Progress 18% (none)
2023-09-19T17:43:19.490Z In(05) vmx Progress 19% (none)
2023-09-19T17:43:19.617Z In(05) vmx Progress 20% (none)
2023-09-19T17:43:19.750Z In(05) vmx Progress 21% (none)
2023-09-19T17:43:19.892Z In(05) vmx Progress 22% (none)
2023-09-19T17:43:20.025Z In(05) vmx Progress 23% (none)
2023-09-19T17:43:20.166Z In(05) vmx Progress 24% (none)
2023-09-19T17:43:20.308Z In(05) vmx Progress 25% (none)
2023-09-19T17:43:20.438Z In(05) vmx Progress 26% (none)
2023-09-19T17:43:20.584Z In(05) vmx Progress 27% (none)
2023-09-19T17:43:20.955Z In(05) vmx Progress 28% (none)
2023-09-19T17:43:21.100Z In(05) vmx Progress 29% (none)
2023-09-19T17:43:21.234Z In(05) vmx Progress 30% (none)
2023-09-19T17:43:21.381Z In(05) vmx Progress 31% (none)
2023-09-19T17:43:21.514Z In(05) vmx Progress 32% (none)
2023-09-19T17:43:21.650Z In(05) vmx Progress 33% (none)
2023-09-19T17:43:21.793Z In(05) vmx Progress 34% (none)
2023-09-19T17:43:21.932Z In(05) vmx Progress 35% (none)
2023-09-19T17:43:22.072Z In(05) vmx Progress 36% (none)
2023-09-19T17:43:22.210Z In(05) vmx Progress 37% (none)
2023-09-19T17:43:22.348Z In(05) vmx Progress 38% (none)
2023-09-19T17:43:22.518Z In(05) vmx Progress 39% (none)
2023-09-19T17:43:22.650Z In(05) vmx Progress 40% (none)
2023-09-19T17:43:22.860Z In(05) vmx Progress 41% (none)
2023-09-19T17:43:23.037Z In(05) vmx Progress 42% (none)
2023-09-19T17:43:23.174Z In(05) vmx Progress 43% (none)
2023-09-19T17:43:23.305Z In(05) vmx Progress 44% (none)
2023-09-19T17:43:23.443Z In(05) vmx Progress 45% (none)
2023-09-19T17:43:23.573Z In(05) vmx Progress 46% (none)
2023-09-19T17:43:23.706Z In(05) vmx Progress 47% (none)
2023-09-19T17:43:23.849Z In(05) vmx Progress 48% (none)
2023-09-19T17:43:23.978Z In(05) vmx Progress 49% (none)
2023-09-19T17:43:24.110Z In(05) vmx Progress 50% (none)
2023-09-19T17:43:24.247Z In(05) vmx Progress 51% (none)
2023-09-19T17:43:24.379Z In(05) vmx Progress 52% (none)
2023-09-19T17:43:24.510Z In(05) vmx Progress 53% (none)
2023-09-19T17:43:24.637Z In(05) vmx Progress 54% (none)
2023-09-19T17:43:24.768Z In(05) vmx Progress 55% (none)
2023-09-19T17:43:24.906Z In(05) vmx Progress 56% (none)
2023-09-19T17:43:25.034Z In(05) vmx Progress 57% (none)
2023-09-19T17:43:25.165Z In(05) vmx Progress 58% (none)
2023-09-19T17:43:25.298Z In(05) vmx Progress 59% (none)
2023-09-19T17:43:25.429Z In(05) vmx Progress 60% (none)
2023-09-19T17:43:25.561Z In(05) vmx Progress 61% (none)
2023-09-19T17:43:25.691Z In(05) vmx Progress 62% (none)
2023-09-19T17:43:25.823Z In(05) vmx Progress 63% (none)
2023-09-19T17:43:25.953Z In(05) vmx Progress 64% (none)
2023-09-19T17:43:26.096Z In(05) vmx Progress 65% (none)
2023-09-19T17:43:26.227Z In(05) vmx Progress 66% (none)
2023-09-19T17:43:26.359Z In(05) vmx Progress 67% (none)
2023-09-19T17:43:26.488Z In(05) vmx Progress 68% (none)
2023-09-19T17:43:26.621Z In(05) vmx Progress 69% (none)
2023-09-19T17:43:26.755Z In(05) vmx Progress 70% (none)
2023-09-19T17:43:26.889Z In(05) vmx Progress 71% (none)
2023-09-19T17:43:27.024Z In(05) vmx Progress 72% (none)
2023-09-19T17:43:27.156Z In(05) vmx Progress 73% (none)
2023-09-19T17:43:27.282Z In(05) vmx Progress 74% (none)
2023-09-19T17:43:27.408Z In(05) vmx Progress 75% (none)
2023-09-19T17:43:27.535Z In(05) vmx Progress 76% (none)
2023-09-19T17:43:27.666Z In(05) vmx Progress 77% (none)
2023-09-19T17:43:27.808Z In(05) vmx Progress 78% (none)
2023-09-19T17:43:27.940Z In(05) vmx Progress 79% (none)
2023-09-19T17:43:28.071Z In(05) vmx Progress 80% (none)
2023-09-19T17:43:28.199Z In(05) vmx Progress 81% (none)
2023-09-19T17:43:28.331Z In(05) vmx Progress 82% (none)
2023-09-19T17:43:28.574Z In(05) vmx Progress 83% (none)
2023-09-19T17:43:28.706Z In(05) vmx Progress 84% (none)
2023-09-19T17:43:28.837Z In(05) vmx Progress 85% (none)
2023-09-19T17:43:28.967Z In(05) vmx Progress 86% (none)
2023-09-19T17:43:29.101Z In(05) vmx Progress 87% (none)
2023-09-19T17:43:29.231Z In(05) vmx Progress 88% (none)
2023-09-19T17:43:29.356Z In(05) vmx Progress 89% (none)
2023-09-19T17:43:29.497Z In(05) vmx Progress 90% (none)
2023-09-19T17:43:29.625Z In(05) vmx Progress 91% (none)
2023-09-19T17:43:29.750Z In(05) vmx Progress 92% (none)
2023-09-19T17:43:29.878Z In(05) vmx Progress 93% (none)
2023-09-19T17:43:29.952Z In(05) vmx MainMem: Prefetch 2039 MB from checkpoint (522208 hot, 470880 locked, lazy = 0).
2023-09-19T17:43:29.952Z In(05) vmx restoring MStats
2023-09-19T17:43:29.952Z In(05) vmx restoring Snapshot
2023-09-19T17:43:29.953Z In(05) vmx restoring pic
2023-09-19T17:43:29.953Z In(05) vmx restoring nvme0:0
2023-09-19T17:43:29.953Z In(05) vmx restoring sata0:1
2023-09-19T17:43:29.953Z In(05) vmx restoring FeatureCompat
2023-09-19T17:43:29.953Z In(05) vmx restoring TimeTracker
2023-09-19T17:43:29.953Z In(05) vmx TimeTracker host to guest rate conversion 4110917516 @ 3701000000Hz -> 28058459896782 @ 3701000000Hz
2023-09-19T17:43:29.953Z In(05) vmx TimeTracker host to guest rate conversion ((x * 2147483648) >> 31) + 28054348979266
2023-09-19T17:43:29.953Z In(05) vmx Disabling TSC scaling since host does not support it.
2023-09-19T17:43:29.953Z In(05) vmx TSC offsetting enabled.
2023-09-19T17:43:29.953Z In(05) vmx timeTracker.globalProgressMaxAllowanceMS: 2000
2023-09-19T17:43:29.953Z In(05) vmx timeTracker.globalProgressToAllowanceNS: 1000
2023-09-19T17:43:29.953Z In(05) vmx restoring Backdoor
2023-09-19T17:43:29.953Z In(05) vmx restoring PCI
2023-09-19T17:43:29.953Z In(05) vmx restoring ExtCfgDevice
2023-09-19T17:43:29.953Z In(05) vmx restoring Cs440bx
2023-09-19T17:43:29.954Z In(05) vmx DUMPER: Item 'gpe.status' [2, -1] not found.
2023-09-19T17:43:29.954Z In(05) vmx DUMPER: Item 'gpe.enable' [2, -1] not found.
2023-09-19T17:43:29.954Z In(05) vmx restoring AcpiNotify
2023-09-19T17:43:29.954Z In(05) vmx restoring vcpuHotPlug
2023-09-19T17:43:29.954Z In(05) vmx restoring MemoryHotplug
2023-09-19T17:43:29.956Z In(05) vmx restoring devHP
2023-09-19T17:43:29.956Z In(05) vmx restoring ACPIWake
2023-09-19T17:43:29.956Z In(05) vmx restoring VMGenCtr
2023-09-19T17:43:29.956Z In(05) vmx restoring OEMDevice
2023-09-19T17:43:29.956Z In(05) vmx restoring HotButton
2023-09-19T17:43:29.956Z In(05) vmx restoring Timer
2023-09-19T17:43:29.956Z In(05) vmx restoring ACPI
2023-09-19T17:43:29.956Z In(05) vmx restoring XPMode
2023-09-19T17:43:29.956Z In(05) vmx restoring DMA
2023-09-19T17:43:29.956Z In(05) vmx restoring BackdoorAPM
2023-09-19T17:43:29.956Z In(05) vmx restoring backdoorAbsMouse
2023-09-19T17:43:29.956Z In(05) vmx restoring Keyboard
2023-09-19T17:43:29.956Z In(05) vmx restoring SIO
2023-09-19T17:43:29.956Z In(05) vmx restoring serial0
2023-09-19T17:43:29.956Z In(05) vmx restoring monitorLate
2023-09-19T17:43:29.956Z In(05) vmx restoring vcpuNUMA
2023-09-19T17:43:29.956Z In(05) vmx restoring devices
2023-09-19T17:43:29.956Z In(05) vmx restoring configdbFT
2023-09-19T17:43:29.956Z In(05) vmx restoring MemoryOverwriteRequest
2023-09-19T17:43:29.956Z In(05) vmx restoring DevicesPowerOn
2023-09-19T17:43:29.956Z In(05) vmx restoring PCIBridge0
2023-09-19T17:43:29.956Z In(05) vmx restoring PCIBridge4
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:1
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:2
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:3
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:4
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:5
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:6
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge4:7
2023-09-19T17:43:29.956Z In(05) vmx restoring PCIBridge5
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:1
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:2
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:3
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:4
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:5
2023-09-19T17:43:29.956Z In(05) vmx restoring pciBridge5:6
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge5:7
2023-09-19T17:43:29.957Z In(05) vmx restoring PCIBridge6
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:1
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:2
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:3
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:4
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:5
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:6
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge6:7
2023-09-19T17:43:29.957Z In(05) vmx restoring PCIBridge7
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:1
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:2
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:3
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:4
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:5
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:6
2023-09-19T17:43:29.957Z In(05) vmx restoring pciBridge7:7
2023-09-19T17:43:29.957Z In(05) vmx restoring Migrate
2023-09-19T17:43:29.957Z In(05) vmx restoring vide
2023-09-19T17:43:29.957Z In(05) vmx DUMPER: Block item 'monbuf' [0, -1] not found.
2023-09-19T17:43:29.957Z In(05) vmx DUMPER: Block item 'monbuf' [1, -1] not found.
2023-09-19T17:43:29.957Z In(05) vmx restoring VGA
2023-09-19T17:43:29.958Z In(05) vmx restoring SVGA
2023-09-19T17:43:29.958Z In(05) vmx SVGA: Guest reported SVGA driver: (0, 0, 0, 0)
2023-09-19T17:43:29.958Z In(05) vmx SVGA-GFB: Allocated gfbSize=134217728
2023-09-19T17:43:29.959Z No(00) vmx ConfigDB: Setting vmotion.checkpointFBSize = "134217728"
2023-09-19T17:43:29.959Z No(00) vmx ConfigDB: Setting vmotion.checkpointSVGAPrimarySize = "268435456"
2023-09-19T17:43:30.072Z In(05) vmx Progress 94% (none)
2023-09-19T17:43:30.177Z In(05) vmx Progress 95% (none)
2023-09-19T17:43:30.270Z In(05) vmx Progress 96% (none)
2023-09-19T17:43:30.382Z In(05) vmx Progress 97% (none)
2023-09-19T17:43:30.475Z In(05) vmx Progress 98% (none)
2023-09-19T17:43:30.577Z In(05) vmx Progress 99% (none)
2023-09-19T17:43:30.605Z In(05) vmx SVGA3dCaps: guest, saved in checkpoint
2023-09-19T17:43:30.605Z In(05) vmx cap[ 0]: 0x00000000 (3D)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 1]: 0x00000000 (MAX_LIGHTS)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 2]: 0x00000000 (MAX_TEXTURES)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 3]: 0x00000000 (MAX_CLIP_PLANES)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 4]: 0x00000000 (VERTEX_SHADER_VERSION)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 5]: 0x00000000 (VERTEX_SHADER)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 6]: 0x00000000 (FRAGMENT_SHADER_VERSION)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 7]: 0x00000000 (FRAGMENT_SHADER)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 8]: 0x00000000 (MAX_RENDER_TARGETS)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 9]: 0x00000000 (S23E8_TEXTURES)
2023-09-19T17:43:30.605Z In(05) vmx cap[ 10]: 0x00000000 (S10E5_TEXTURES)