-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerform the installation.html
1090 lines (1082 loc) · 94.7 KB
/
Perform the installation.html
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
<!DOCTYPE html>
<!-- saved from url=(0101)https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm -->
<html xmlns:madcap="http://www.madcapsoftware.com/Schemas/MadCap.xsd" lang="en-us" xml:lang="en-us"
class="_Skins_HTML5___Side_Navigation" data-mc-search-type="Stem" data-mc-help-system-file-name="index.xml"
data-mc-path-to-help-system="../../" data-mc-has-content-body="True" data-mc-target-type="WebHelp2"
data-mc-runtime-file-type="Topic;Default" data-mc-preload-images="false" data-mc-in-preview-mode="false"
data-mc-medium="non-print" data-mc-toc-path="Install Tricentis Tosca">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Installation</title>
<script async="" src="./Perform the installation_files/analytics.js.download"></script>
<script type="text/javascript">/* <![CDATA[ */
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-6574346-8', 'auto');
ga('send', 'pageview');
/* ]]> */</script>
<link href="./Perform the installation_files/Slideshow.css" rel="stylesheet">
<link href="./Perform the installation_files/TextEffects.css" rel="stylesheet">
<link href="./Perform the installation_files/Topic.css" rel="stylesheet">
<link href="./Perform the installation_files/Styles.css" rel="stylesheet">
<link href="./Perform the installation_files/Tablet.css" rel="stylesheet">
<link href="./Perform the installation_files/Mobile.css" rel="stylesheet">
<link href="./Perform the installation_files/foundation.6.2.3.css" rel="stylesheet">
<link href="./Perform the installation_files/Styles(1).css" rel="stylesheet">
<link href="./Perform the installation_files/Tablet(1).css" rel="stylesheet">
<link href="./Perform the installation_files/Mobile(1).css" rel="stylesheet">
<style>
</style>
<link href="./Perform the installation_files/Styles(2).css" rel="stylesheet">
<script src="./Perform the installation_files/jquery.min.js.download">
</script>
<script src="./Perform the installation_files/purify.min.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/require.min.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/require.config.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/foundation.6.2.3_custom.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/plugins.min.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/MadCapAll.js.download" defer="defer">
</script>
<script src="./Perform the installation_files/permalink.js.download">
</script>
<meta class="foundation-mq">
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Breakpoints.js"
src="./Perform the installation_files/Breakpoints.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Language.js"
src="./Perform the installation_files/Language.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk0.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk0.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk1.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk1.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk2.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk2.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk3.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk3.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk4.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk4.js.download"></script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_"
data-requiremodule="../../Data/Tocs/_webhelp__Tricentis_Tosca_WebHelp_Chunk5.js"
src="./Perform the installation_files/_webhelp__Tricentis_Tosca_WebHelp_Chunk5.js.download"></script>
</head>
<body>
<div class="foundation-wrap off-canvas-wrapper">
<div class="off-canvas-wrapper-inner" data-off-canvas-wrapper="">
<aside class="off-canvas position-right" role="navigation" id="offCanvas"
data-off-canvas="id15d9-off-canvas" data-position="right" data-mc-ignore="true" aria-hidden="true">
<ul class="off-canvas-drilldown vertical menu off-canvas-list" data-drilldown="e55gpu-drilldown"
data-mc-back-link="Back" data-mc-css-tree-node-expanded="is-drilldown-submenu-parent"
data-mc-css-tree-node-collapsed="is-drilldown-submenu-parent"
data-mc-css-sub-menu="vertical menu slide-in-right is-drilldown-submenu"
data-mc-include-indicator="False" data-mc-include-icon="False" data-mc-include-parent-link="True"
data-mc-include-back="True" data-mc-defer-expand-event="True"
data-mc-expand-event="click.zf.drilldown" data-mc-toc="True" data-mc-chunk="Data/Toc.xml">
<li class="tree-node tree-node-leaf" data-mc-id="0"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/cover_web.htm">Home</a>
</li>
<li class="tree-node tree-node-leaf" data-mc-id="1"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/video/videos.htm">Videos</a>
</li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="2"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/about_tricentis_tosca.htm"
aria-expanded="false" role="button">About Tricentis Tosca</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="3"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/systemrequirements/systemrequirements.htm"
aria-expanded="false" role="button">System Requirements</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="4"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation.htm"
aria-expanded="true" role="button"
aria-controls="submenu2ab8a8c2-2627-4177-95db-d05206b6233e">Install Tricentis Tosca</a>
<ul class="vertical menu slide-in-right is-drilldown-submenu submenu is-active"
id="submenu2ab8a8c2-2627-4177-95db-d05206b6233e" data-submenu="" aria-hidden="false"
role="menu" style="display: block;">
<li class="js-drilldown-back tree-node is-submenu-item is-drilldown-submenu-item"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#"
role="button">Back</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="17"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation.htm">Install
Tricentis Tosca</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item tree-node-selected"
data-mc-id="18"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm"
class="selected">Perform the installation</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="19"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/unattended_installation.htm">Unattended
installation</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="20"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/citrix.htm">Install
Tosca in CITRIX environments</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="21"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/files_and_directories.htm">Files
and directories</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="22"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/ports.htm">Ports
required by Tosca components</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="23"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/change_repair_uninstall.htm">Maintaining
the Tosca installation</a></li>
<li class="tree-node tree-node-leaf is-submenu-item is-drilldown-submenu-item"
data-mc-id="24"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/prepare_multiuser.htm">Preparing
databases for the multiuser mode</a></li>
<li class="tree-node is-drilldown-submenu-parent is-submenu-item is-drilldown-submenu-item"
data-mc-id="25"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/windows2016_overview.htm"
aria-expanded="false" role="button">Tosca Commander on Windows Server 2016</a></li>
</ul>
</li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="5"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_server/tosca_server.htm"
aria-expanded="false" role="button">Install Tricentis Tosca Server</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="6"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/upgrade/upgrade_overview.htm"
aria-expanded="false" role="button">Upgrade from 12.3 to 13.0</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="7"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/licensing/lic_administering_licenses.htm"
aria-expanded="false" role="button">License administration</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="8"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tutorial/introduction.htm"
aria-expanded="false" role="button">First steps tutorial</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="9"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/create_and_manage_workspaces.htm"
aria-expanded="false" role="button">Create and manage workspaces</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="10"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/working_with_tosca.htm"
aria-expanded="false" role="button">Work with Tricentis Tosca</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="11"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/administering_projects.htm"
aria-expanded="false" role="button">Manage projects and users</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="12"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_options_and_settings_overview.htm"
aria-expanded="false" role="button">Configure options and settings</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="13"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_sections_overview.htm"
aria-expanded="false" role="button">Plan, create and execute tests</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="14"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tbox/tbox_intro.htm"
aria-expanded="false" role="button">Steer with Engines 3.0</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="15"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/classic_engines/engines.htm"
aria-expanded="false" role="button">Steer with Classic Engines</a></li>
<li class="tree-node is-drilldown-submenu-parent" data-mc-id="16"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/addins.htm"
aria-expanded="false" role="button">Tosca Extensions</a></li>
</ul>
</aside>
<div class="off-canvas-content inner-wrap" data-off-canvas-content="">
<div data-sticky-container="" class="title-bar-container sticky-container"
style="min-height: 81.4375px;">
<nav class="title-bar tab-bar sticky" data-sticky="w0nqga-sticky" data-options="marginTop:0"
style="width: 100%; max-width: 1287.2px;" data-sticky-on="only screen and (max-width: 1279px)"
data-mc-ignore="true" data-resize="ibmyp7-sticky" data-events="resize"><a
class="skip-to-content fluid-skip showOnFocus"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#mc-main-content">Skip
To Main Content</a>
<div class="middle title-bar-section outer-row clearfix">
<div class="menu-icon-container relative clearfix">
<div class="central-dropdown" style="display:none;" id="#centralSmallScreen"><a
class="central-account-drop"><span class="central-account-image"></span><span
class="central-account-text">Account</span></a>
<div class="central-dropdown-content"><a
class="MCCentralLink central-dropdown-content-settings">Settings</a>
<hr class="central-separator"><a
class="MCCentralLink central-dropdown-content-logout">Logout</a>
</div>
</div>
<button class="menu-icon" aria-label="Show Navigation Panel" data-toggle="offCanvas"
aria-expanded="false" aria-controls="offCanvas"><span></span>
</button>
</div>
</div>
<div class="title-bar-layout outer-row">
<div class="logo-wrapper"><a class="logo"
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/cover_web.htm"><img
src="./Perform the installation_files/transparent.gif" alt="Logo"
class="invisible-label"></a>
</div>
<div class="navigation-wrapper nocontent">
<ul class="navigation clearfix" data-mc-css-tree-node-has-children="has-children"
data-mc-css-sub-menu="sub-menu" data-mc-expand-event="mouseenter"
data-mc-top-nav-menu="True" data-mc-max-depth="3" data-mc-include-icon="False"
data-mc-include-indicator="False" data-mc-include-children="True"
data-mc-include-siblings="True" data-mc-include-parent="True" data-mc-toc="True"
data-mc-chunk="Data/Toc.xml">
<li data-mc-id="0"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/cover_web.htm">Home</a>
</li>
<li data-mc-id="1"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/video/videos.htm">Videos</a>
</li>
<li data-mc-id="2" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/about_tricentis_tosca.htm">About
Tricentis Tosca</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="About Tricentis Tosca" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="3" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/systemrequirements/systemrequirements.htm">System
Requirements</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="System Requirements" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="4" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation.htm">Install
Tricentis Tosca</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Install Tricentis Tosca" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="5" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_server/tosca_server.htm">Install
Tricentis Tosca Server</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Install Tricentis Tosca Server" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="6" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/upgrade/upgrade_overview.htm">Upgrade
from 12.3 to 13.0</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Upgrade from 12.3 to 13.0" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="7" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/licensing/lic_administering_licenses.htm">License
administration</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="License administration" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="8" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tutorial/introduction.htm">First
steps tutorial</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="First steps tutorial" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="9" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/create_and_manage_workspaces.htm">Create
and manage workspaces</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Create and manage workspaces" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="10" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/working_with_tosca.htm">Work
with Tricentis Tosca</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Work with Tricentis Tosca" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="11" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/administering_projects.htm">Manage
projects and users</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Manage projects and users" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="12" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_options_and_settings_overview.htm">Configure
options and settings</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Configure options and settings" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="13" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_sections_overview.htm">Plan,
create and execute tests</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Plan, create and execute tests" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="14" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tbox/tbox_intro.htm">Steer
with Engines 3.0</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Steer with Engines 3.0" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="15" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/classic_engines/engines.htm">Steer
with Classic Engines</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Steer with Classic Engines" aria-expanded="false"
aria-haspopup="true">»</button></li>
<li data-mc-id="16" class="has-children"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/addins.htm">Tosca
Extensions</a><button
class="topnav-expand showOnFocus topnav-expand-toplevel"
aria-label="Tosca Extensions" aria-expanded="false"
aria-haspopup="true">»</button></li>
</ul>
<div class="central-dropdown" style="display:none;" id="#centralTop"><a
class="central-account-drop"><span class="central-account-image"></span><span
class="central-account-text">Account</span></a>
<div class="central-dropdown-content"><a
class="MCCentralLink central-dropdown-content-settings">Settings</a>
<hr class="central-separator"><a
class="MCCentralLink central-dropdown-content-logout">Logout</a>
</div>
</div>
</div>
<div class="nav-search-wrapper">
<div class="nav-search row">
<form class="search"
action="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#">
<div class="search-bar search-bar-container needs-pie">
<input class="search-field needs-pie" type="search"
aria-label="Search Field" placeholder="Search">
<div class="search-filter-wrapper"><span class="invisible-label"
id="search-filters-label">Filter: </span>
<div class="search-filter" aria-haspopup="true"
aria-controls="sf-content" aria-expanded="false"
aria-label="Search Filter" title="All Files" role="button"
tabindex="0">
</div>
<div class="search-filter-content" id="sf-content">
<ul>
<li>
<button class="mc-dropdown-item"
aria-labelledby="search-filters-label filterSelectorLabel-00001"><span
id="filterSelectorLabel-00001">All Files</span>
</button>
</li>
</ul>
</div>
</div>
<div class="search-submit-wrapper" dir="ltr">
<div class="search-submit" title="Search" role="button" tabindex="0">
<span class="invisible-label">Submit Search</span>
</div>
</div>
</div>
</form>
</div>
<div class="central-dropdown" style="display:none;"><a
class="central-account-drop"><span class="central-account-image"></span><span
class="central-account-text">Account</span></a>
<div class="central-dropdown-content"><a
class="MCCentralLink central-dropdown-content-settings">Settings</a>
<hr class="central-separator"><a
class="MCCentralLink central-dropdown-content-logout">Logout</a>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="main-section">
<div class="row outer-row sidenav-layout">
<nav class="sidenav-wrapper">
<div class="sidenav-container">
<ul class="off-canvas-accordion vertical menu sidenav"
data-accordion-menu="g0diog-accordion-menu"
data-mc-css-tree-node-expanded="is-accordion-submenu-parent"
data-mc-css-tree-node-collapsed="is-accordion-submenu-parent"
data-mc-css-sub-menu="vertical menu accordion-menu is-accordion-submenu nested"
data-mc-include-indicator="False" data-mc-include-icon="False"
data-mc-include-parent-link="False" data-mc-include-back="False"
data-mc-defer-expand-event="True" data-mc-expand-event="click.zf.accordionMenu"
data-mc-toc="True" data-mc-side-nav-menu="True" data-mc-chunk="Data/Toc.xml">
<li class="tree-node tree-node-leaf" data-mc-id="0"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/cover_web.htm">Home</a>
</li>
<li class="tree-node tree-node-leaf" data-mc-id="1"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/video/videos.htm">Videos</a>
</li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="2"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/about_tricentis_tosca.htm">About
Tricentis Tosca<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">About Tricentis
Tosca </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="3"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/systemrequirements/systemrequirements.htm">System
Requirements<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">System Requirements </span></span></a>
</li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="4"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation.htm">Install
Tricentis Tosca<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="true"
aria-controls="submenu934e9388-dd1f-421e-89f7-0afd9300625b"><span
class="submenu-toggle"> </span><span
class="invisible-label">Install Tricentis
Tosca </span></span></a>
<ul class="vertical menu accordion-menu is-accordion-submenu nested"
id="submenu934e9388-dd1f-421e-89f7-0afd9300625b">
<li class="tree-node tree-node-leaf tree-node-selected" data-mc-id="17"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm"
class="selected">Perform the installation</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="18"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/unattended_installation.htm">Unattended
installation</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="19"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/citrix.htm">Install
Tosca in CITRIX environments</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="20"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/files_and_directories.htm">Files
and directories</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="21"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/ports.htm">Ports
required by Tosca components</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="22"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/change_repair_uninstall.htm">Maintaining
the Tosca installation</a></li>
<li class="tree-node tree-node-leaf" data-mc-id="23"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/prepare_multiuser.htm">Preparing
databases for the multiuser mode</a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="24"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/windows2016_overview.htm">Tosca
Commander on Windows Server 2016<span
class="submenu-toggle-container" role="button" tabindex="0"
aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Tosca Commander on Windows Server
2016 </span></span></a></li>
</ul>
</li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="5"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_server/tosca_server.htm">Install
Tricentis Tosca Server<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Install Tricentis Tosca
Server </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="6"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/upgrade/upgrade_overview.htm">Upgrade
from 12.3 to 13.0<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Upgrade from 12.3 to
13.0 </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="7"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/licensing/lic_administering_licenses.htm">License
administration<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">License
administration </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="8"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tutorial/introduction.htm">First
steps tutorial<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">First steps tutorial </span></span></a>
</li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="9"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/create_and_manage_workspaces.htm">Create
and manage workspaces<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Create and manage
workspaces </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="10"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/working_with_tosca.htm">Work
with Tricentis Tosca<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Work with Tricentis
Tosca </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="11"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/administering_projects.htm">Manage
projects and users<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Manage projects and
users </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="12"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_options_and_settings_overview.htm">Configure
options and settings<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Configure options and
settings </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="13"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/tosca_sections_overview.htm">Plan,
create and execute tests<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Plan, create and execute
tests </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="14"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tbox/tbox_intro.htm">Steer
with Engines 3.0<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Steer with Engines
3.0 </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="15"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/classic_engines/engines.htm">Steer
with Classic Engines<span class="submenu-toggle-container" role="button"
tabindex="0" aria-expanded="false"><span
class="submenu-toggle"> </span><span
class="invisible-label">Steer with Classic
Engines </span></span></a></li>
<li class="tree-node is-accordion-submenu-parent" data-mc-id="16"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/resources/webhelp/addins.htm">Tosca
Extensions<span class="submenu-toggle-container" role="button" tabindex="0"
aria-expanded="false"><span class="submenu-toggle"> </span><span
class="invisible-label">Tosca Extensions </span></span></a>
</li>
</ul>
</div>
</nav>
<div class="body-container">
<div data-mc-content-body="True">
<table align="center" class="deckblatt_tabelle">
<colgroup>
<col style="width: 318px;">
<col style="width: 50%;">
</colgroup>
<tbody>
<tr>
<td>
<div class="nocontent">
<div class="MCBreadcrumbsBox_WebHelp_0 breadcrumbs"
role="navigation" aria-label="Breadcrumbs"
data-mc-breadcrumbs-divider=" > "
data-mc-breadcrumbs-count="3" data-mc-toc="True"
data-mc-chunk="Data/Toc.xml"><span
class="MCBreadcrumbsPrefix">You are here: </span>
<a href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation.htm"
class="MCBreadcrumbsLink">Install Tricentis Tosca</a><span
class="MCBreadcrumbsDivider"> > </span><span
class="MCBreadcrumbsSelf">Perform the installation</span>
</div>
</div>
</td>
<td class="kopfzeile_ungerade_logo" style="text-align: right;">
<label>Version:</label>
<select name="select-version" id="select-version">
<option
value="https://documentation.tricentis.com/tosca/1300/en/index.htm">
13.1</option>
<option
value="https://documentation.tricentis.com/tosca/1300/en/index.htm">
13.0</option>
<option
value="https://documentation.tricentis.com/tosca/1230/en/index.htm">
12.3</option>
<option
value="https://documentation.tricentis.com/tosca/1220/en/index.htm">
12.2</option>
<option
value="https://documentation.tricentis.com/tosca/1210/en/index.htm">
12.1</option>
<option
value="https://documentation.tricentis.com/en/1200/index.htm#resources/webhelp/cover_web.htm">
12.0</option>
</select>
<!-- <script type="text/javascript">
var urlmenu = document.getElementById( 'select-version' );
urlmenu.onchange = function() {
window.open( this.options[ this.selectedIndex ].value );
};
</script>
<script type="text/javascript">
var urlmenu = document.getElementById( 'select-version' );
urlmenu.onchange = function() {
window.location= this.options[ this.selectedIndex ].value ;
};
</script>
-->
</td>
</tr>
</tbody>
</table><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#"
class="scrollup">Scroll</a>
<p>
</p>
<hr class="chm" width="100%" size="0" align="center">
<div id="content_w_sidebar">
<div class="sidebar" id="toc"
style="border-left-style: solid;border-left-width: 1px;border-left-color: #b1b3b3;border-right-style: solid;border-right-width: 1px;border-right-color: #b1b3b3;border-top-style: solid;border-top-width: 1px;border-top-color: #b1b3b3;border-bottom-style: solid;border-bottom-width: 1px;border-bottom-color: #b1b3b3;padding-left: 0px;padding-right: 0px;padding-top: 12px;padding-bottom: 12px;">
<span class="sidebarheading"><span
style="font-weight: bold;font-style: normal;color: #0C2949;text-decoration: none;">
<span>In this topic</span></span></span>
<div class="sidebartoc">
<ul class="innerstep">
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Performtheinstallation">
Perform the installation</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Starttheinstallation">Start
the installation</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#NavigatetheInstaller">Navigate
the Installer</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Checkprerequisites">Check
prerequisites</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Selectthesetuptype">Select
the setup type</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Selecttheinstalllocation">
Select the install location</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#EnableToscaDiagnostics">Enable
Tosca Diagnostics</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#EnableToscaBI">Enable
Tosca BI</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#CustomSetup">
Custom Setup</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Reviewtheinstallation">Review
the installation</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Installationprogress">Installation
progress</a></li>
<li><a class="topiclink navlinks"
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Finishtheinstallation">Finish
the installation</a></li>
</ul>
</div>
</div>
<!-- placeholder for side menu -->
<div class="masterpage_body" style="width: 83%; max-width: calc(100% - 150px);">
<div class="Body_WebHelp" role="main" id="mc-main-content">
<h1><a name="Performtheinstallation"></a><a name="aanchor884"></a>
<madcap:concept term="Installation"><a
name="TOSCA_Testsuite_Installation_Guide_en_3608560094_1020053"></a><a
name="TOSCA_Testsuite_Installation_Guide_en_3608560094_78523"></a>Installation
</madcap:concept>
</h1>
<p>Follow the step-by-step instructions to install <span
class="Product_Name">Tricentis Tosca</span> on your computer.</p>
<h2><a name="Starttheinstallation"></a>To begin installation</h2>
<p>To start installation, double-click <span class="Dateisystem">Tosca
TestSuite.<version
number>.exe</span> file. This opens the <span>Tricentis Tosca
Installer</span> that guides you through the installation process.
</p>
<p>On the first page of the <span>Tricentis Tosca Installer</span>, you have
to agree to the Tricentis License Terms and Conditions. </p>
<p class="singleAction">To proceed, select the Check Box and click <span
class="UI_Element">Continue</span>.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/tosca_testsuite_installer.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung"><span class="Product_Name">Tricentis
Tosca Installer</span>
</p>
</div>
<p class="singleAction">If you have an earlier <span
class="Product_Name">Tricentis Tosca</span> version installed,
select the Check Box and click <span class="UI_Element">Upgrade</span>.
The earlier <span class="Product_Name">Tricentis Tosca</span> version
is uninstalled, and the new version will be installed with the <a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Setup_type">default
components</a> to the previously configured folders.</p>
<p class="Zwischenueberschrifr"><a name="aanchor885"></a>
<madcap:concept term="Installation"><a
name="TOSCA_Testsuite_Installation_Guide_en_3608560094_1020634"></a>License
information for third-party software components</madcap:concept>
</p>
<p><span class="Product_Name">Tricentis Tosca</span> uses third-party
software components. A list of these components and the corresponding
license notes are included in the <span
class="Dateisystem">%TRICENTIS_HOME%\dll\License.txt</span> file.
</p>
<h2><a name="NavigatetheInstaller"></a>To navigate the <span
class="Product_Name">Installer</span></h2>
<p>You can see all steps of the installation process on the left side of the
<span class="Product_Name">Installer</span> window.
</p>
<p>To navigate between the installation steps, click <span
class="UI_Element">Next</span> to proceed or <span
class="UI_Element">Back</span> to modify the previous step. You can
also return to the previous step by clicking on it.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/navigate_installer.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Steps of the installation process</p>
</div>
<h2><a name="Checkprerequisites"></a>To check prerequisites</h2>
<p>In order for <span class="Product_Name">Tricentis Tosca</span> to work
properly, there are some
prerequisites. The <span class="Product_Name">Installer</span> displays
all prerequisites and
checks whether the required components are available in the system:</p>
<ul>
<li value="1">
<p>The <img
src="./Perform the installation_files/prerequisite_ok_22x23.png"
class="icon_fliesstext" style="width: 22;height: 23;"> icon
indicates that a component is available.</p>
</li>
<li value="2">
<p>The <img
src="./Perform the installation_files/prerequisite_missing_22x21.png"
class="icon_fliesstext" style="width: 22;height: 21;"> icon
indicates that <span class="Product_Name">Tricentis Tosca
Installer</span> needs to install a missing component, which
is not done automatically.</p>
<p>If an icon is white, it only indicates that a particular
component is selected in the list.</p>
</li>
</ul>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/prerequisites.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Prerequisites of <span
class="Product_Name">Tricentis Tosca</span> installation</p>
</div>
<p>Click <span class="UI_Element">Next</span> to continue.</p>
<h2><a name="Selectthesetuptype"></a><a name="Setup_type"></a>To Select the
setup type</h2>
<p>You can select one of the following setup types:</p>
<ul>
<li value="1">
<p><span class="UI_Element">Tosca Commander</span> performs a
default installation. This setup type installs following default
components: </p>
<ul>
<li value="1">
<p><span class="Product_Name">Tosca Commander</span>
</p>
</li>
<li value="2">
<p><span class="Product_Name">Tricentis TBox</span>
</p>
</li>
<li value="3">
<p><span class="Product_Name">Tricentis Licensing</span>
</p>
</li>
<li value="4">
<p><span class="Product_Name">Tricentis Classic</span>
</p>
</li>
<li value="5">
<p><span class="Product_Name">Distributed Execution
Agent</span>
</p>
</li>
</ul>
</li>
<li value="2">
<p><span class="UI_Element">Execution Agent</span> is an
execution-only agent that is exclusive for <span
class="Product_Name"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/tbox/tbox_intro.htm">Engines
3.0</a></span>.</p>
</li>
<li value="3">
<p><span class="UI_Element">Custom Installation</span> allows users
to
select components to install.</p>
</li>
</ul>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/select_setup_type.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Select the setup type</p>
</div>
<table class="hinweis_tabelle" style="caption-side: top;">
<colgroup>
<col style="width: 65px;">
<col>
</colgroup>
<tbody>
<tr>
<td class="hinweis_tabelle_hinweis">
<img src="./Perform the installation_files/symboltip.png"
class="rufzeichen">
</td>
<td class="hinweis_tabelle_hinweis">
<p>
</p>
<p class="Zelle_Haupttext">If you upgrade from an earlier
version, you can only select <span
class="UI_Element">Tosca Commander</span>. To select
a different setup type, remove your installed <span
class="Product_Name">Tricentis Tosca</span> version
manually and restart the installation process.</p>
<p></p>
</td>
</tr>
</tbody>
</table>
<p class="singleAction">Select a setup type and click <span
class="UI_Element">Next</span> to continue.</p>
<h2><a name="Selecttheinstalllocation"></a><a name="aanchor886"></a>
<madcap:concept term="Installation"><a
name="TOSCA_Testsuite_Installation_Guide_en_3608560094_1018461"></a>To
Select
the install location</madcap:concept>
</h2>
<p><span class="Product_Name">Tricentis Tosca Installer</span> provides
default destination folders for the installation of <span
class="Product_Name">Tricentis Tosca</span>. </p>
<p>If you want to change the default destination folders, you must select
directories to which all <span class="Product_Name">Tricentis
Tosca</span> users have write access.</p>
<table class="hinweis_tabelle" style="caption-side: top;">
<colgroup>
<col style="width: 65px;">
<col>
</colgroup>
<tbody>
<tr>
<td class="hinweis_tabelle_hinweis">
<img src="./Perform the installation_files/symboltip.png"
class="rufzeichen">
</td>
<td class="hinweis_tabelle_hinweis">
<p>
</p>
<p class="Zelle_Haupttext">Network drives can not host the
<span class="Product_Name">Tosca_Projects</span> and
<span class="Product_Name">APPDATA</span> directories.
The <span class="Product_Name">Tosca_Projects</span>
folder
must be placed in a directory that is persistent on the
machine.
</p>
<p></p>
</td>
</tr>
</tbody>
</table>
<p class="singleAction">To select a different directory, click <span
class="UI_Element">Browse</span> and select a destination folder in
the subsequent dialog.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/choose_installation_directory.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Select installation directories</p>
</div>
<p class="singleAction">Click <span class="UI_Element">Next</span> to
continue.</p>
<h2><a name="EnableToscaDiagnostics"></a>To enable <span
class="Product_Name">Tosca</span> <span
class="Product_Name">Diagnostics</span></h2>
<p><span class="Product_Name">Tosca Diagnostics</span> can help
improving <span class="Product_Name">Tricentis Tosca</span> by sending
anonymous usage statistics.</p>
<p class="singleAction">To enable <span class="Product_Name">Tosca
Diagnostics</span>, select the check box.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/enable_diagnostics.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Enable <span
class="Product_Name">Tosca Diagnostics</span></p>
</div>
<p>After installation, you can enable or disable <span
class="Product_Name">Tosca Diagnostics</span> in <span
class="Product_Name">Tosca Commander</span> under <span
class="UI_Element">Project<span
class="No_break">-></span>Settings<span
class="No_break">-></span>Diagnostics</span>. For more
information, <a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_commander/settings_diagnostics.htm"
class="siehe_Kapitelnummer MCXref xref xrefsiehe_Kapitelnummer">see
chapter "Settings - Diagnostics"</a>.</p>
<p class="singleAction">Click <span class="UI_Element">Next</span> to
continue.</p>
<h2><a name="EnableToscaBI"></a>To enable <span
class="Product_Name">Tosca</span> <span
class="Product_Name">BI</span></h2>
<p>The <a
href="https://documentation.tricentis.com/tosca/1300/en/content/tosca_bi/bi_intro.htm"><span
class="Product_Name">Tosca Business Intelligence</span>
AddIn</a> allows you to test your <span
class="Product_Name">DWH/BI</span> environment.</p>
<p>To work with the AddIn, you need a valid <span class="Product_Name">Tosca
BI</span> license. Contact your <span
class="Product_Name">Tricentis</span> sales representative for
further
information.</p>
<p class="singleAction">To enable the <span class="Product_Name">Tosca
BI</span> AddIn, select the check box.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/enable_tosca_bi.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Enable <span
class="Product_Name">Tosca BI</span></p>
</div>
<p>After the installation, you can enable or disable the <span
class="Product_Name">Tosca BI</span> AddIn in <span
class="Product_Name">Tosca Commander</span> under <span
class="UI_Element">Project<span
class="No_break">-></span>Options<span
class="No_break">-></span>Tosca BI</span>.</p>
<p class="singleAction">Click <span class="UI_Element">Next</span> to
continue.</p>
<h2><a name="CustomSetup"></a><a name="aanchor887"></a>
<madcap:concept term="Installation"><a name="Custom"></a>Custom Setup
</madcap:concept>
</h2>
<p>If you have selected <span class="UI_Element">Custom Installation</span>
in the <span class="UI_Element"><a
href="https://documentation.tricentis.com/tosca/1300/en/content/installation_tosca/installation_process.htm#Setup_type"><span
class="UI_Element">Select Setup Type</span>
dialog</a></span>, <span class="Product_Name">Tricentis
Tosca</span> can be custamized with selected
components.</p>
<p class="singleAction">Select the check boxes next to the components that
you want to install.</p>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/komponentenauswahl.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Select components</p>
</div>
<p class="singleAction">Click <span class="UI_Element">Next</span> to
continue.</p>
<h2><a name="Reviewtheinstallation"></a><a name="Installation"></a>To review
the installation</h2>
<div class="bild_bildunterschrift">
<p class="Grafik">
<img src="./Perform the installation_files/install_tosca.png"
class="screenshot_80">
</p>
<p class="Abbildungsbeschriftung">Review dialog</p>
</div>
<p>In the <span class="Product_Name">Review</span> dialog, you can review
the installation and configuration.</p>
<p>If you want to make changes before the installation, click <span
class="UI_Element">Change Features</span>. The <span
class="Product_Name">Installer</span> redirects you to the <span
class="UI_Element">Setup Type</span> dialog.</p>
<p class="singleAction">Change your settings and continue with the
installation as described above.</p>
<p class="singleAction"> If you agree with the installation summary, click
<span class="UI_Element">Install</span> to run the installation.
</p>
<h2><a name="Installationprogress"></a>Installation progress</h2>
<p>In the <span class="UI_Element">Installation</span> dialog, you can
follow the installation progress:</p>
<ul>
<li value="1">
<p>The <img
src="./Perform the installation_files/installation_success_22x22.png"
class="icon_fliesstext" style="width: 22;height: 22;"> icon
indicates a successful installation. </p>
</li>