wix tool 打包官方例子

wixtoolset

https://wixtoolset.org/releases/

VS 插件

https://wixtoolset.org/releases/

教学:https://www.firegiant.com/wix/tutorial/getting-started/

例子:https://www.firegiant.com/system/files/samples/samplewixui.zip

VS创建

如果是VS 来创建,用到UI界面 需要在VS引用 WixUIExtensionC:\Program Files (x86)\WiX Toolset v3.11\bin\\WixUIExtension.dll

  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


<?xml version='1.0' encoding='windows-1252'?>


<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>


  <Product Name='Foobar 1.0' Id='YOURGUID-86C7-4D14-AEC0-86416A69ABDE' UpgradeCode='YOURGUID-7349-453F-94F6-BCB5110BA4FD'


    Language='1033' Codepage='1252' Version='1.0.0' Manufacturer='Acme Ltd.'>


 


    <Package Id='*' Keywords='Installer'


      Description="Acme's Foobar 1.0 Installer"


      Comments='Foobar is a registered trademark of Acme Ltd.' Manufacturer='Acme Ltd.'


      InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />


 


    <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" />


    <Property Id='DiskPrompt' Value="Acme's Foobar 1.0 Installation [1]" />


 


    <Directory Id='TARGETDIR' Name='SourceDir'>


      <Directory Id='ProgramFilesFolder' Name='PFiles'>


        <Directory Id='Acme' Name='Acme'>


          <Directory Id='INSTALLDIR' Name='Foobar 1.0'>


 


            <Component Id='MainExecutable' Guid='YOURGUID-83F1-4F22-985B-FDB3C8ABD471'>


              <File Id='FoobarEXE' Name='FoobarAppl10.exe' DiskId='1' Source='FoobarAppl10.exe' KeyPath='yes'>


                <Shortcut Id="startmenuFoobar10" Directory="ProgramMenuDir" Name="Foobar 1.0" WorkingDirectory='INSTALLDIR' Icon="Foobar10.exe" IconIndex="0" Advertise="yes" />


                <Shortcut Id="desktopFoobar10" Directory="DesktopFolder" Name="Foobar 1.0" WorkingDirectory='INSTALLDIR' Icon="Foobar10.exe" IconIndex="0" Advertise="yes" />


              </File>


            </Component>


 


            <Component Id='HelperLibrary' Guid='YOURGUID-6BE3-460D-A14F-75658D16550B'>


              <File Id='HelperDLL' Name='Helper.dll' DiskId='1' Source='Helper.dll' KeyPath='yes' />


            </Component>


 


            <Component Id='Manual' Guid='YOURGUID-574D-4A9A-A266-5B5EC2C022A4'>


              <File Id='Manual' Name='Manual.pdf' DiskId='1' Source='Manual.pdf' KeyPath='yes'>


                <Shortcut Id="startmenuManual" Directory="ProgramMenuDir" Name="Instruction Manual" Advertise="yes" />


              </File>


            </Component>


 


          </Directory>


        </Directory>


      </Directory>


 


      <Directory Id="ProgramMenuFolder" Name="Programs">


        <Directory Id="ProgramMenuDir" Name="Foobar 1.0">


          <Component Id="ProgramMenuDir" Guid="YOURGUID-7E98-44CE-B049-C477CC0A2B00">


            <RemoveFolder Id='ProgramMenuDir' On='uninstall' />


            <RegistryValue Root='HKCU' Key='Software\[Manufacturer]\[ProductName]' Type='string' Value='' KeyPath='yes' />


          </Component>


        </Directory>


      </Directory>


 


      <Directory Id="DesktopFolder" Name="Desktop" />


    </Directory>


 


    <Feature Id='Complete' Title='Foobar 1.0' Description='The complete package.'


      Display='expand' Level='1' ConfigurableDirectory='INSTALLDIR'>


      <Feature Id='MainProgram' Title='Program' Description='The main executable.' Level='1'>


        <ComponentRef Id='MainExecutable' />


        <ComponentRef Id='HelperLibrary' />


      <ComponentRef Id='ProgramMenuDir' />


      </Feature>


 


      <Feature Id='Documentation' Title='Description' Description='The instruction manual.' Level='1000'>


        <ComponentRef Id='Manual' />


      </Feature>


    </Feature>


 


    <UIRef Id="WixUI_Mondo" />


    <UIRef Id="WixUI_ErrorProgressText" />


 


    <Icon Id="Foobar10.exe" SourceFile="FoobarAppl10.exe" />


 


  </Product>


</Wix>

加UI的地方:

1
2
3


<UIRef Id="WixUI_Mondo" /><UIRef Id="WixUI_ErrorProgressText" />

参考

https://www.bbsmax.com/A/n2d9p61Q5D/