VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergeUSB.wxs@ 74430

Last change on this file since 74430 was 72020, checked in by vboxsync, 7 years ago

Installer/win: Trying to fix windows 10 detection. VersionNT stops at 603 because the microsoft buggers is running the MSI installer in 8.1 compatibilitiy mode or something similarlly stupid (go figure). Renamed Properties.wxi to Defines.wix (they're preprocessor defines, not properties) and added CommonProperties.wix for stuff like the new property that indicates whether we're installing on windows 10 (VBOX_IS_WINDOW_10). bugref:8691

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4
5 Copyright (C) 2006-2015 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<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
17 xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
18
19 <?include Properties.wxi ?>
20
21 <Module Id="msm_VBoxUSB"
22 Language="!(loc.LANG)"
23 Version="$(var.Property_Version)">
24
25 <Package Id="b8f1b6f4-2e92-40a6-b819-782e523b20ab"
26 Keywords="Installer, Setup"
27 Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) USB drivers installation package"
28 Comments="$(env.VBOX_PRODUCT) USB drivers installation package"
29 Manufacturer="$(env.VBOX_VENDOR)"
30 InstallerVersion="200"
31 AdminImage="yes"
32 InstallPrivileges="elevated"
33 Platform="$(var.Property_Platform)"
34 SummaryCodepage="1252"/>
35
36 <?include PublicProperties.wxi ?>
37
38 <!-- Here comes the file/directory list -->
39 <Directory Id="TARGETDIR" Name="SourceDir">
40 <Directory Id="msm_VBoxUSBFolder" FileSource=".">
41
42 <?include VBoxMergeUSB.wxi ?>
43
44 </Directory> <!-- msm_VBoxUSBFolder -->
45 </Directory> <!-- TARGETDIR -->
46
47 </Module>
48</Wix>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette