调试VS2008 VBScript自定义安装任务

时间:2011-08-24 07:35:52

标签: visual-studio-2008 vbscript installation windows-installer custom-action

我有一个安装项目,它有一个执行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.

脚本看起来很好,但我看不到调试它的方法。有没有办法输出跟踪消息,甚至为此目的暂停执行安装脚本?

1 个答案:

答案 0 :(得分:1)

您可以尝试在脚本中插入以下行,以将调试消息输出到日志文件中:

Set objFso = CreateObject("Scripting.FileSystemObject")
Set f = objFso.OpenTextFile("C:\Temp\logfile.txt", 8, True)
f.WriteLine "Debug message text"
f.Close