-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.xml
8855 lines (8820 loc) · 590 KB
/
search.xml
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
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>第一篇博客</title>
<url>/2019/11/27/%E7%AC%AC%E4%B8%80%E7%AF%87%E5%8D%9A%E5%AE%A2/</url>
<content><![CDATA[<h2 id="创建这个博客的原因"><a href="#创建这个博客的原因" class="headerlink" title="创建这个博客的原因"></a>创建这个博客的原因</h2><ul>
<li>为vExport做准备</li>
<li>梳理自己的知识点</li>
<li>创建自己的知识库</li>
</ul>
<h2 id="该博客的内容"><a href="#该博客的内容" class="headerlink" title="该博客的内容"></a>该博客的内容</h2><ul>
<li>虚拟化相关知识整理</li>
<li>整理虚拟化实施运维过程中遇到的问题</li>
<li>整理相关文档手册</li>
<li>虚拟化相关知识的科普</li>
</ul>
]]></content>
<categories>
<category>随感</category>
</categories>
<tags>
<tag>个人</tag>
</tags>
</entry>
<entry>
<title>虚拟化架构升级步骤</title>
<url>/2019/11/27/%E8%99%9A%E6%8B%9F%E5%8C%96%E6%9E%B6%E6%9E%84%E5%8D%87%E7%BA%A7%E6%AD%A5%E9%AA%A4/</url>
<content><![CDATA[<h1 id="虚拟化架构升级步骤"><a href="#虚拟化架构升级步骤" class="headerlink" title="虚拟化架构升级步骤"></a>虚拟化架构升级步骤</h1><ol>
<li>由程工实现协助待实施地市的供电局相关工程师获取现有虚拟化架构信息(所需工具:RVTools),交由虚拟化实施工程师进行分析。现在已经明确需要完成桌面架构与生产架构的分离。</li>
<li>由虚拟化工程师与程工先行讨论方案,形成实质文档后提交用户方审核。</li>
<li>获得用户确认后,实施工程师开始准备实施需要的升级镜像与相关文档,包括升级后虚拟化架构所需要的端口列表等。</li>
<li>抵达用户现场后根据实际环境与用户工程师讨论方案的实际实施步骤,与用户工程师达成一致,如有需要,可进行由用户主管领导牵头的方案讨论会。</li>
<li>获得用户领导首肯后,准备实施工作,由程工解决行政流程问题。</li>
<li>完成开票等行政流程后,实施工程师开始清理现有架构,以解决现有环境内的隐患为第一优先,整个项目的实施要求为:优先保证现有架构的强壮性,整个项目需要以一个完整的,强壮的老架构。同时完成桌面业务与生产业务的拆分<a id="more"></a></li>
<li>确认现有架构足够完善后,排除所有预计中的升级过程中业务中断的风险。经用户确认后,准备升级。</li>
<li>开始升级后,安装vCenter Server组件(生产架构用需新IP地址),安装过程需严格遵循VMware官方发布的最佳实践文档,新VC命名为:VC-MIS。</li>
<li>vCenter Server安装完成后,开始接管生产服务器群集(未升级)。成功接管所有生产服务器后,开始将服务器上的生产业务进行集中,使空闲服务器进入维护模式,得到用户工程师确认后,进入机房开始升级位于维护模式下的服务器。</li>
<li>第一批服务器完成升级后,由VC重新连接升级后的服务器,开始升级后网络配置与存储配置可用性测试。</li>
<li>完成可用性测试后,启动稳定性测试,检查链路单点,存储单点,虚拟机存储映射冗余。</li>
<li>稳定性测试完成后,将虚拟机迁移到升级后服务器上,将其他服务器进入维护模式。</li>
<li>将剩余服务器升级。</li>
<li>重复步骤10-11检查服务器可用性与稳定性。</li>
<li>配置群集功能,包括DRS与HA,DRS需确定是否有应用对服务器有依赖性,例如USB加密狗等,如果有需设置DRS亲和性规则。HA需要确认可访问的共享存储数量,如果不够需要与用户工程师讨论(本步骤可以在步骤4讨论)</li>
<li>完成生产架构升级后,开始桌面架构升级,使用原有VC,确保Citrix桌面的连接不变。</li>
<li>升级VC,保留现有IP与证书,升级后将虚拟机改名为VC-Desktop。</li>
<li>连接升级后的VC,添加桌面主机(未升级),升级过程参照步骤9-15</li>
<li>重新配置Citrix,由于桌面厂商梁工网络情况不佳,无法远程操作,所有操作为虚拟化实施工程师代为实施,明确操作风险,准确实现梁工每一个操作步骤,记录操作过程。</li>
<li>重新检查升级后架构的完整性与强壮性,与用户工程师讨论日常管理注意事项。</li>
<li>对用户进行升级后产品培训,主要内容为升级后新增内容,及日常管理所需要了解的注意事项。</li>
<li>移交安装介质,移交升级过程中产生的文档(升级前后架构文件,实施记录表等)</li>
<li>由程工与用户主管领导签字验收,完成整个项目实施。</li>
</ol>
]]></content>
<categories>
<category>技术</category>
</categories>
<tags>
<tag>VMware</tag>
</tags>
</entry>
<entry>
<title>vSAN项目实施前置需求检查清单</title>
<url>/2019/11/27/vSAN%E9%A1%B9%E7%9B%AE%E5%AE%9E%E6%96%BD%E5%89%8D%E7%BD%AE%E9%9C%80%E6%B1%82%E6%A3%80%E6%9F%A5%E6%B8%85%E5%8D%95/</url>
<content><![CDATA[<h1 id="vSAN项目实施前置需求检查清单"><a href="#vSAN项目实施前置需求检查清单" class="headerlink" title="vSAN项目实施前置需求检查清单"></a>vSAN项目实施前置需求检查清单</h1><h2 id="前置硬件准备"><a href="#前置硬件准备" class="headerlink" title="前置硬件准备"></a>前置硬件准备</h2><h3 id="服务器部分"><a href="#服务器部分" class="headerlink" title="服务器部分"></a>服务器部分</h3><ol>
<li>物理配置</li>
</ol>
<ul>
<li>服务器上架完成</li>
</ul>
<ol start="2">
<li>固件部分</li>
</ol>
<ul>
<li>服务器各部件固件更新</li>
<li>服务器RAID卡型号确认,RAID卡ESXi6.0update2驱动准备完毕</li>
</ul>
<ol start="3">
<li>硬盘部分</li>
</ol>
<ul>
<li>服务器RAID配置完成</li>
</ul>
<ol start="4">
<li>网络部分</li>
</ol>
<ul>
<li>确认服务器到接入交换机的接口位置,标签<a id="more"></a>
<h3 id="网络部分"><a href="#网络部分" class="headerlink" title="网络部分"></a>网络部分</h3></li>
</ul>
<ol>
<li>核心交换机部分</li>
</ol>
<ul>
<li>核心vLan网关配置</li>
<li>虚拟化所使用相应端口的链路聚合配置</li>
<li>核心交换关闭STP配置□</li>
<li>虚拟化所使用相应端口vLan Trunk配置</li>
<li>虚拟化所需端口确定,及相应标签</li>
</ul>
<ol start="2">
<li>接入交换机部分</li>
</ol>
<ul>
<li>接入交换机上行端口链路聚合配置</li>
<li>接入交换机关闭STP配置</li>
<li>接入交换机端口vLan Trunk配置</li>
<li>接入交换机端口规划确定,及相应标签</li>
</ul>
<ol start="3">
<li>综合布线部分</li>
</ol>
<ul>
<li>核心交换与接入交换机间跳线</li>
<li>接入交换机与服务器间条线</li>
<li>以上各链路测通,光链路测衰减<h3 id="供电部分"><a href="#供电部分" class="headerlink" title="供电部分"></a>供电部分</h3></li>
<li>确认服务器及网络设备的供电情况<h3 id="制冷部分"><a href="#制冷部分" class="headerlink" title="制冷部分"></a>制冷部分</h3></li>
<li>确认机房内设备总功率及空调制冷功率<h3 id="机房建筑部分"><a href="#机房建筑部分" class="headerlink" title="机房建筑部分"></a>机房建筑部分</h3></li>
<li>确认机房地板承重</li>
<li>确认机房噪音、灰尘及震动</li>
</ul>
]]></content>
<categories>
<category>技术</category>
</categories>
<tags>
<tag>VMware</tag>
</tags>
</entry>
<entry>
<title>Solution Implementation Checklist</title>
<url>/2019/11/28/Solution%20Implementation%20Checklist/</url>
<content><![CDATA[<h1 id="Solution-Implementation-Checklist"><a href="#Solution-Implementation-Checklist" class="headerlink" title="Solution Implementation Checklist"></a>Solution Implementation Checklist</h1><h2 id="Pre-Installation"><a href="#Pre-Installation" class="headerlink" title="Pre-Installation"></a>Pre-Installation</h2><ul>
<li>Verify that the Configuration Workbook has been completed with host names and IP addresses. </li>
<li>Confirm that MS Windows installation media is available. </li>
<li>Confirm that SQL Server installation media is available. </li>
<li>Confirm that VMware ESXi installation media is available. </li>
<li>Confirm that VMware vCenter ISO or VMware vCenter Appliance ISO is available. </li>
<li>Confirm that the LDAP/Active Directory infrastructure is available. </li>
<li>Confirm administrator groups and service accounts have been created in Active Directory. </li>
<li>Confirm that the customer has all the licenses keys that are required for the solution. </li>
<li>Confirm Certificate Authority infrastructure is available (if appropriate). </li>
<li>Confirm Windows template is available for VM deployment. </li>
<li>Confirm ESXi host names are added to DNS and are resolvable. </li>
<li>Confirm vCenter host names are added to DNS and are resolvable. (If vCenter for Windows, verify that the resolvable name matches the vCenter host system.) </li>
<li>(Optional) Confirm if SSD storage should be used for vFlash read caching. </li>
<li>Confirm the Host Reference tab in the Configuration Workbook has been populated. <a id="more"></a>
<h2 id="Physical-Components"><a href="#Physical-Components" class="headerlink" title="Physical Components"></a>Physical Components</h2></li>
<li>Host Configuration tab in the Configuration Workbook is populated. </li>
<li>Physical hardware installed in data center and connected to power. </li>
<li>Network cables connected to servers. </li>
<li>Storage cables connected to servers (Fibre only). <h2 id="ESXi-Components"><a href="#ESXi-Components" class="headerlink" title="ESXi Components"></a>ESXi Components</h2></li>
<li>Installation of ESXi on the hosts completed? </li>
<li>Storage configuration for ESXi on the hosts complete? </li>
<li>Network configuration for ESXi on the hosts complete? <h2 id="vCenter-Server-for-Windows"><a href="#vCenter-Server-for-Windows" class="headerlink" title="vCenter Server for Windows"></a>vCenter Server for Windows</h2></li>
<li>Verify that the host machine meets the minimum requirements for installation. </li>
<li>Create the vCenter Server for Windows database on an external database system. </li>
<li>Verify that Adobe Flash Player version 11.9 or later is installed on the host system or that the Desktop Experience feature is enabled, if you want to use the vSphere Web Client on this host. </li>
<li>Perform the installation of vCenter Server for Windows. <h2 id="vCenter-Server-Appliance"><a href="#vCenter-Server-Appliance" class="headerlink" title="vCenter Server Appliance"></a>vCenter Server Appliance</h2></li>
<li>Deploy the vCenter Server Appliance for the management cluster. </li>
<li>Perform the initial configuration of the vCenter Server Appliance for the management cluster. </li>
<li>Amend the administrator (root) password and configure the password policy of the management cluster vCenter Server. </li>
<li>Configure time synchronization for the vCenter Server Appliance for the management cluster. If setting up the vCenter Appliance to be part of an Active Directory domain, no time synchronization configuration is required. <h2 id="General-vCenter-Server-Configuration"><a href="#General-vCenter-Server-Configuration" class="headerlink" title="General vCenter Server Configuration"></a>General vCenter Server Configuration</h2></li>
<li>Verify that vCenter Server for Windows or the vCenter Server Appliance has been deployed. </li>
<li>Assign administrator privileges to an Active Directory group for the management vCenter Server. </li>
<li>Create the data center object for the management vCenter Server. </li>
<li>Create the management cluster object for the management vCenter Server. </li>
<li>Configure HA, DRS, DPM, and EVC for the management cluster. </li>
<li>Attach the ESXi hosts to the management cluster. </li>
<li>Apply license for vCenter Server and ESXi to the management cluster. </li>
<li>Create the distributed virtual switch for the management cluster vCenter Server. </li>
<li>Assigned the ESXi hosts to the distributed virtual switch for the management cluster. </li>
<li>Configure and present the Storage (datastores from storage solution or Virtual SAN) to the management cluster ESXi hosts. </li>
<li>Configure management port and enable vSphere vMotion among the ESXi hosts. </li>
</ul>
<ul>
<li>Create a virtual machine, vMotion the virtual machine. </li>
<li>Convert the virtual machine to a template and show deployment. </li>
<li>(Optional) Create a new storage policy for Virtual SAN. </li>
<li>(Optional) Test Virtual SAN maintenance mode to show evacuation processes. </li>
</ul>
<h2 id="Edge-Payload-Cluster"><a href="#Edge-Payload-Cluster" class="headerlink" title="Edge/Payload Cluster"></a>Edge/Payload Cluster</h2><ul>
<li>Verify that vCenter Server for Windows or the vCenter Server Appliance has been deployed. </li>
<li>Assign administrator privileges to an Active Directory group for the edge/payload vCenter Server. </li>
<li>Create the data center object for the edge/payload vCenter Server. </li>
<li>Create the edge/payload Cluster object for the edge/payload vCenter Server. </li>
<li>Configure HA, DRS, DPM, and EVC for the edge/payload cluster. </li>
<li>Attach the ESXi hosts to the edge/payload cluster. </li>
<li>Apply license for vCenter Server and ESXi to the edge/payload cluster. </li>
<li>Create the distributed virtual switch for the edge/payload cluster vCenter Server. </li>
<li>Assign the ESXi hosts to the distributed virtual switch for the edge/payload cluster. </li>
<li>Configure and present the storage (datastores from storage solution or Virtual SAN) to the edge/payload cluster ESXi hosts. </li>
<li>Configure management port and enable vSphere vMotion among the ESXi hosts. </li>
<li>Create a virtual machine. Use vMotion to migrate the virtual machine. </li>
<li>Convert the virtual machine to a template and show deployment. </li>
<li>(Optional) Create a new storage policy for Virtual SAN. </li>
<li>(Optional) Test Virtual SAN maintenance mode to show evacuation processes. </li>
</ul>
]]></content>
<categories>
<category>技术</category>
</categories>
<tags>
<tag>VMware</tag>
</tags>
</entry>
<entry>
<title>VMware Horizon 6 POC案例验收报告模版 CN</title>
<url>/2019/11/28/VMware%20Horizon%206%20POC%E6%A1%88%E4%BE%8B%E9%AA%8C%E6%94%B6%E6%8A%A5%E5%91%8A%E6%A8%A1%E7%89%88%20CN/</url>
<content><![CDATA[<div class=WordSection1>
<h3><span><span>基本功能测试</span></span></h3>
<p><span>以下是基本功能测试用例,供参考</span></p>
<a id="more"></a>
<table border=1 cellspacing=0 cellpadding=0 width="100%" style='width:100%;border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
mso-yfti-tbllook:160;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:
.5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;page-break-inside:avoid;
height:25.5pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;mso-border-alt:
solid windowtext .5pt;background:#CCCCCC;padding:0cm 5.4pt 0cm 5.4pt;
height:25.5pt'>
<p class=MsoNormal align=center style='text-align:center;line-height:21.0pt;
mso-line-height-rule:exactly;layout-grid-mode:char;mso-layout-grid-align:
none'><span class=SpellE><b><span lang=EN-US style='mso-bidi-font-size:10.5pt'>序号</span></b></span><b><span
lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></b></p>
</td>
<td width="25%" nowrap style='width:25.76%;border:solid windowtext 1.0pt;
border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
solid windowtext .5pt;background:#CCCCCC;padding:0cm 5.4pt 0cm 5.4pt;
height:25.5pt'>
<p class=MsoNormal align=center style='text-align:center;line-height:21.0pt;
mso-line-height-rule:exactly;layout-grid-mode:char;mso-layout-grid-align:
none'><span class=SpellE><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
color:black;mso-color-alt:windowtext'>测试项目</span></b></span><b><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></b></p>
</td>
<td width="43%" style='width:43.44%;border:solid windowtext 1.0pt;border-left:
none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
background:#CCCCCC;padding:0cm 5.4pt 0cm 5.4pt;height:25.5pt'>
<p class=MsoNormal align=center style='text-align:center;line-height:21.0pt;
mso-line-height-rule:exactly;layout-grid-mode:char;mso-layout-grid-align:
none'><span class=SpellE><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
color:black;mso-color-alt:windowtext'>测试描述</span></b></span><b><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></b></p>
</td>
<td width="24%" valign=top style='width:24.18%;border:solid windowtext 1.0pt;
border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
solid windowtext .5pt;background:#CCCCCC;padding:0cm 5.4pt 0cm 5.4pt;
height:25.5pt'>
<p class=MsoNormal align=center style='text-align:center;line-height:21.0pt;
mso-line-height-rule:exactly;layout-grid-mode:char;mso-layout-grid-align:
none'><span class=SpellE><b><span lang=EN-US style='mso-bidi-font-size:10.5pt;
color:black;mso-color-alt:windowtext'>测试结果</span></b></span><b><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>1.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="25%" nowrap rowspan=3 style='width:25.76%;border-top:none;
border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt;line-height:21.0pt;mso-line-height-rule:
exactly;layout-grid-mode:char;mso-layout-grid-align:none'><span
style='mso-bidi-font-size:10.5pt;mso-fareast-language:ZH-CN'>虚拟桌面系统安装部署<span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>安装手册齐备、正确,且提供官方中文版本<span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>2.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>通过厂商提供的安装介质以及安装手册,快速搭建桌面虚拟化平台<span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>3.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>服务器<span
class=GramE>端支持</span>大规模部署架构,支持多角色部署,部署方式快速高效,适应复杂的网络环境<span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>4.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="25%" nowrap rowspan=6 style='width:25.76%;border-top:none;
border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p> </o:p>
</span></p>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p> </o:p>
</span></p>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p> </o:p>
</span></p>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span lang=EN-US style='mso-bidi-font-size:10.5pt'>
<o:p> </o:p>
</span></p>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span class=SpellE><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>虚拟桌面访问方式</span></span><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>能从传统<span lang=EN-US>PC</span>以客户端方式访问虚拟桌面<span
lang=EN-US style='color:red'>/</span><span style='color:red'>应用发布</span><span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:5;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>5.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>能在<span class=GramE>瘦客户</span>机上访问虚拟桌面<span lang=EN-US
style='color:red'>/</span><span style='color:red'>应用发布</span><span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:6;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>6.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>能在<span class=GramE>零客户</span>机上访问虚拟桌面<span lang=EN-US
style='color:red'>/</span><span style='color:red'>应用发布</span><span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:7;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>7.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>能在<span lang=EN-US>iPad/Android</span>等平板电脑上访问虚拟桌面<span
lang=EN-US style='color:red'>/</span><span style='color:red'>应用发布</span><span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:8;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>8.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span class=SpellE><span lang=EN-US
style='mso-bidi-font-size:10.5pt;mso-bidi-font-weight:bold'>能在iPhone</span></span><span
lang=EN-US style='mso-bidi-font-size:10.5pt;mso-bidi-font-weight:bold'>/<span
class=SpellE>Android等智能手机上访问虚拟桌面</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;color:red;mso-fareast-language:ZH-CN;
mso-bidi-font-weight:bold'>/</span><span style='mso-bidi-font-size:10.5pt;
color:red;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>应用发布</span><span lang=EN-US
style='mso-bidi-font-size:10.5pt;mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:9;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>9.<span
style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>提供<span lang=EN-US>Linux</span>客户端,可在<span
lang=EN-US>Linux</span>上访问虚拟桌面<span lang=EN-US>
<o:p></o:p>
</span></span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:10;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>10.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="25%" nowrap rowspan=4 style='width:25.76%;border-top:none;
border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span class=SpellE><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>虚拟桌面提供模式</span></span><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体;mso-fareast-language:
ZH-CN;mso-bidi-font-weight:bold'>可配置某一桌面为独占式桌面,客户端启动桌面后进行个性化设置,重启后系统桌面为个性化桌面</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;background:yellow;mso-highlight:
yellow;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:11;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>11.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体;mso-fareast-language:
ZH-CN;mso-bidi-font-weight:bold'>可配置某一桌面为共享式桌面,供多个用户使用,客户端启动桌面后进行个性化设置,重启后系统桌面恢复为初始状态,不保留个性化设置</span><span lang=EN-US
style='mso-bidi-font-size:10.5pt;mso-fareast-language:ZH-CN;
mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-family:宋体'>过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:12;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>12.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体;mso-fareast-language:
ZH-CN;mso-bidi-font-weight:bold'>可配置手动桌面池,将<span
class=GramE>物理机</span>或其他形式的虚拟机也统一纳入管理,提供虚拟化的虚拟桌面外,也可以将现有的物理工作站纳入到统一的管理中</span><span
lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;
mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:13;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-latin;mso-bidi-font-family:等线;mso-bidi-theme-font:
minor-latin'><span style='mso-list:Ignore'>13.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:
10.5pt'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" style='width:43.44%;border-top:none;border-left:none;
border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='line-height:21.0pt;mso-line-height-rule:exactly;
layout-grid-mode:char;mso-layout-grid-align:none'><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-weight:bold'>可配置基于</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-bidi-font-weight:bold'>Terminal</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-bidi-font-weight:bold'> Service</span><span style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'>的</span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:
宋体;mso-hansi-font-family:宋体;mso-bidi-font-weight:bold'>桌面,将单个操作系统以多</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-bidi-font-weight:bold'>Session</span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-weight:bold'>的方式供多个用户同时使用</span></span><span lang=EN-US
style='mso-bidi-font-size:10.5pt;mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□<span class=SpellE><span class=GramE>通过</span></span></span><span class=GramE><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:
宋体;mso-fareast-font-family:等线;mso-fareast-theme-font:minor-fareast'><span style='mso-spacerun:yes'>
</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:
宋体'>□</span></span><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:
10.5pt;mso-ascii-font-family:宋体;mso-hansi-font-family:宋体'>不通过</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-hansi-font-family:等线;mso-hansi-theme-font:
minor-latin'>
<o:p></o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:14;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-bidi-font-family:
宋体;mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>14.<span style='font:7.0pt "Times New Roman"'>
</span></span></span>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-bidi-font-weight:bold'>
<o:p> </o:p>
</span></p>
</td>
<td width="25%" nowrap rowspan=12 style='width:25.76%;border-top:none;
border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt;line-height:21.0pt;mso-line-height-rule:
exactly;layout-grid-mode:char;mso-layout-grid-align:none'><span class=SpellE><span lang=EN-US style='mso-bidi-font-size:10.5pt;mso-ascii-font-family:宋体;
mso-hansi-font-family:宋体;mso-bidi-font-weight:bold'>虚拟桌面管理</span></span><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-bidi-font-weight:bold'>
<o:p></o:p>
</span></p>
</td>
<td width="43%" valign=top style='width:43.44%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormalIndent style='margin-bottom:6.0pt;text-indent:0cm;
mso-char-indent-count:0;line-height:21.0pt;mso-line-height-rule:exactly'><span style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-ascii-font-family:"Times New Roman";
mso-hansi-font-family:"Times New Roman"'>测试为一个新用户快速生成新的桌面的时间</span><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>
<o:p></o:p>
</span></p>
</td>
<td width="24%" valign=top style='width:24.18%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal style='margin-bottom:7.8pt'><span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:等线;
mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;mso-bidi-font-weight:
bold'>
<o:p> </o:p>
</span></p>
</td>
</tr>
<tr style='mso-yfti-irow:15;page-break-inside:avoid;height:27.6pt'>
<td width="6%" style='width:6.62%;border:solid windowtext 1.0pt;border-top:
none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormal align=center style='margin-top:0cm;margin-right:0cm;
margin-bottom:0cm;margin-left:21.0pt;margin-bottom:.0001pt;text-align:center;
text-indent:-21.0pt;line-height:21.0pt;mso-line-height-rule:exactly;
mso-pagination:none;mso-list:l5 level1 lfo24;tab-stops:list 21.0pt;
layout-grid-mode:char;mso-layout-grid-align:none'>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-bidi-font-family:
宋体;mso-fareast-language:ZH-CN;mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>15.<span
style='font:7.0pt "Times New Roman"'> </span></span></span>
<span lang=EN-US style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-fareast-font-family:
等线;mso-fareast-theme-font:minor-fareast;mso-fareast-language:ZH-CN;
mso-bidi-font-weight:bold'>
<o:p> </o:p>
</span></p>
</td>
<td width="43%" valign=top style='width:43.44%;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt;height:27.6pt'>
<p class=MsoNormalIndent style='margin-bottom:6.0pt;text-indent:0cm;
mso-char-indent-count:0;line-height:21.0pt;mso-line-height-rule:exactly'><span style='mso-bidi-font-size:10.5pt;font-family:宋体;mso-ascii-font-family:"Times New Roman";
mso-hansi-font-family:"Times New Roman"'>测试为一批新用户(</span><span lang=EN-US
style='mso-bidi-font-size:10.5pt'>10</span><span style='mso-bidi-font-size:
10.5pt;font-family:宋体;mso-ascii-font-family:"Times New Roman";mso-hansi-font-family:
"Times New Roman"'>个)快速生成新的桌面的时间</span><span lang=EN-US style='mso-bidi-font-size:
10.5pt'>