If run setup from non-administrator account Burn (Wix 3.7.1224.0) doesnt
force reboot on Windows Server 2012.
But if run setup "As administrator" computer is rebooting.

In Wix 3.6.3303.0 when running from non-administrator account process
crashed after press "Reboot" button.

Sample Wix code:

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>

  <Bundle 
    UpgradeCode="FC5DE568-C3CE-4B24-91EA-32F87C32C5B0"
    Version="1.1.1.1"
    Manufacturer="Manufacturer"
    Name="ProductName">

    <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.RtfLicense" />

    <Chain>
        <ExePackage
          SourceFile="vcredist_x64.exe"
          Cache="no"
          Compressed="yes"
          PerMachine="yes"
          Permanent="yes"
          InstallCommand="/q"
          RepairCommand="/q"
          UninstallCommand="/qu">
          <ExitCode Behavior="scheduleReboot" />
        </ExePackage>
    </Chain>
  </Bundle>

</Wix>




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-Windows-Server-2012-not-rebooting-after-install-tp7590036.html
Sent from the wix-devs mailing list archive at Nabble.com.

------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to