diff options
Diffstat (limited to 'src/wixlib/UtilExtension_Platform.wxi')
-rw-r--r-- | src/wixlib/UtilExtension_Platform.wxi | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/wixlib/UtilExtension_Platform.wxi b/src/wixlib/UtilExtension_Platform.wxi index c557e04b..5fb1d0ae 100644 --- a/src/wixlib/UtilExtension_Platform.wxi +++ b/src/wixlib/UtilExtension_Platform.wxi | |||
@@ -300,6 +300,54 @@ | |||
300 | </Fragment> | 300 | </Fragment> |
301 | 301 | ||
302 | <Fragment> | 302 | <Fragment> |
303 | <CustomAction Id="$(var.Prefix)QueryOsInfo$(var.Suffix)" BinaryKey="$(var.Prefix)UtilCA$(var.Suffix)" DllEntry="WixQueryOsInfo" Execute="firstSequence" Return="check" SuppressModularization="yes" /> | ||
304 | |||
305 | <InstallExecuteSequence> | ||
306 | <Custom Action="$(var.Prefix)QueryOsInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
307 | </InstallExecuteSequence> | ||
308 | |||
309 | <InstallUISequence> | ||
310 | <Custom Action="$(var.Prefix)QueryOsInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
311 | </InstallUISequence> | ||
312 | </Fragment> | ||
313 | |||
314 | <Fragment> | ||
315 | <CustomAction Id="$(var.Prefix)QueryOsDirs$(var.Suffix)" BinaryKey="$(var.Prefix)UtilCA$(var.Suffix)" DllEntry="WixQueryOsDirs" Execute="firstSequence" Return="check" SuppressModularization="yes" /> | ||
316 | |||
317 | <InstallExecuteSequence> | ||
318 | <Custom Action="$(var.Prefix)QueryOsDirs$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
319 | </InstallExecuteSequence> | ||
320 | |||
321 | <InstallUISequence> | ||
322 | <Custom Action="$(var.Prefix)QueryOsDirs$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
323 | </InstallUISequence> | ||
324 | </Fragment> | ||
325 | |||
326 | <Fragment> | ||
327 | <CustomAction Id="$(var.Prefix)QueryOsWellKnownSID$(var.Suffix)" BinaryKey="$(var.Prefix)UtilCA$(var.Suffix)" DllEntry="WixQueryOsWellKnownSID" Execute="firstSequence" Return="check" SuppressModularization="yes" /> | ||
328 | |||
329 | <InstallExecuteSequence> | ||
330 | <Custom Action="$(var.Prefix)QueryOsWellKnownSID$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
331 | </InstallExecuteSequence> | ||
332 | |||
333 | <InstallUISequence> | ||
334 | <Custom Action="$(var.Prefix)QueryOsWellKnownSID$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
335 | </InstallUISequence> | ||
336 | </Fragment> | ||
337 | |||
338 | <Fragment> | ||
339 | <CustomAction Id="$(var.Prefix)QueryOsDriverInfo$(var.Suffix)" BinaryKey="$(var.Prefix)UtilCA$(var.Suffix)" DllEntry="WixQueryOsDriverInfo" Execute="firstSequence" Return="check" SuppressModularization="yes" /> | ||
340 | |||
341 | <InstallExecuteSequence> | ||
342 | <Custom Action="$(var.Prefix)QueryOsDriverInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
343 | </InstallExecuteSequence> | ||
344 | |||
345 | <InstallUISequence> | ||
346 | <Custom Action="$(var.Prefix)QueryOsDriverInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
347 | </InstallUISequence> | ||
348 | </Fragment> | ||
349 | |||
350 | <Fragment> | ||
303 | <Binary Id="$(var.Prefix)UtilCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))utilca.dll" /> | 351 | <Binary Id="$(var.Prefix)UtilCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))utilca.dll" /> |
304 | </Fragment> | 352 | </Fragment> |
305 | </Include> | 353 | </Include> |