1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 |
|
---|
5 | Copyright (C) 2015-2016 Oracle Corporation
|
---|
6 |
|
---|
7 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | available from http://www.virtualbox.org. This file is free software;
|
---|
9 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | General Public License (GPL) as published by the Free Software
|
---|
11 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | -->
|
---|
15 |
|
---|
16 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wix"
|
---|
17 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
18 |
|
---|
19 | <!-- Define our own public properties here in order to get those also recognized in case
|
---|
20 | case we're building the installer as MSM modules -->
|
---|
21 |
|
---|
22 | <!-- Whether or not a desktop shortcut should be created. -->
|
---|
23 | <Property Id="VBOX_INSTALLDESKTOPSHORTCUT" Value="1" Secure="yes"/>
|
---|
24 | <SetProperty Id="VBOX_INSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both"
|
---|
25 | Value="{}"><![CDATA[VBOX_INSTALLDESKTOPSHORTCUT="0"]]></SetProperty>
|
---|
26 |
|
---|
27 | <!-- Whether or not start menu entries should be created. -->
|
---|
28 | <Property Id="VBOX_INSTALLSTARTMENUENTRIES" Value="1" Secure="yes"/>
|
---|
29 | <SetProperty Id="VBOX_INSTALLSTARTMENUENTRIES" After="AppSearch" Sequence="both"
|
---|
30 | Value="{}"><![CDATA[VBOX_INSTALLSTARTMENUENTRIES="0"]]></SetProperty>
|
---|
31 |
|
---|
32 | <!-- Whether or not a desktop shortcut for the Quick Launch Bar should be created -->
|
---|
33 | <Property Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" Value="1" Secure="yes"/>
|
---|
34 | <SetProperty Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both"
|
---|
35 | Value="{}"><![CDATA[VBOX_INSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty>
|
---|
36 |
|
---|
37 | <!-- Whether or not VirtualBox should be started automatically right after successful installation -->
|
---|
38 | <Property Id="VBOX_START" Value="1" Secure="yes"/>
|
---|
39 | <SetProperty Id="VBOX_START" After="AppSearch" Sequence="both"
|
---|
40 | Value="{}"><![CDATA[VBOX_START="0"]]></SetProperty>
|
---|
41 | </Include>
|
---|