WiXMSI:如何在wxs文件中放入print.out或echo语句



我想向WXS添加一些print.out(或ECHO)语句。我怎么能这么做?

编译.wxs文件时,可以使用预处理器指令:
<?error This is an error message ?> 
<?warning This is a warning message ?>

WiX构建Windows安装程序包,即数据库。Windows安装程序通过一系列操作处理数据库。Windows安装程序的日志记录没有可扩展的功能。

安装MSI文件时,可以创建日志msiexec /?:

Logging Options
/l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|*] <LogFile>
    i - Status messages
    w - Nonfatal warnings
    e - All error messages
    a - Start up of actions
    r - Action-specific records
    u - User requests
    c - Initial UI parameters
    m - Out-of-memory or fatal exit information
    o - Out-of-disk-space messages
    p - Terminal properties
    v - Verbose output
    x - Extra debugging information
    + - Append to existing log file
    ! - Flush each line to the log
    * - Log all information, except for v and x options
/log <LogFile>
    Equivalent of /l* <LogFile>

自定义操作可以写入日志。但是自定义操作不是在.wxs文件中编写的。

相关内容

  • 没有找到相关文章

最新更新