我有一个安装项目,它有一个执行VBScript文件的自定义操作。目前,此安装在执行此脚本期间失败,并出现以下错误:
There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vender.
脚本看起来很好,但我看不到调试它的方法。有没有办法输出跟踪消息,甚至为此目的暂停执行安装脚本?
答案 0 :(得分:1)
您可以尝试在脚本中插入以下行,以将调试消息输出到日志文件中:
Set objFso = CreateObject("Scripting.FileSystemObject")
Set f = objFso.OpenTextFile("C:\Temp\logfile.txt", 8, True)
f.WriteLine "Debug message text"
f.Close