调试 VS2008 VBScript 自定义安装任务

发布于 2024-11-30 21:24:54 字数 333 浏览 1 评论 0原文

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

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

I have an install project which has a custom action that executes a VBScript file. As it stands, this installation fails during the execution of this script with the following error:

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.

The script looks fine to me, but I can't see a way to debug it. Is there a way to output a trace message, or even pause execution of an install script for this purpose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偷得浮生 2024-12-07 21:24:54

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

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

You could try to insert the following lines into your script to output debug messages to a log file:

Set objFso = CreateObject("Scripting.FileSystemObject")
Set f = objFso.OpenTextFile("C:\Temp\logfile.txt", 8, True)
f.WriteLine "Debug message text"
f.Close
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文