Advertisement
anonit

Batch file to compile a wix (WXS) file into an MSI

Feb 19th, 2016
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.23 KB | None | 0 0
  1. @echo off
  2. rem Batch file to compile a wix (WXS) file into an MSI.
  3.  
  4. set PATH=%PATH%;"C:\Program Files (x86)\WiX Toolset v3.10\bin"
  5.  
  6. del *.wixobj
  7. del *.wixpdb
  8. del *.msi
  9.  
  10. candle *.wxs
  11. light *.wixobj -ext WixUtilExtension.dll
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement