Node.js安装失败.日志在哪里?

忙着尝试通过nodejs网站上的 windows下载设置node.js.它似乎一直运行到最后,当它击中“创建短路……”然后开始回滚并得到一个相当无用的一般错误.

有没有我可以查看的日志文件,看看有什么进展?

解决方法

我首选的选项是使用命令行msiexec工具 as indicated on WiX’s website
msiexec / i MyApplication.msi / l * v MyLogFile.txt

我从未使用的另一个选项是编辑注册as indicated on Microsoft’s website

To enable Windows Installer logging yourself,open the registry with Regedit.exe and create the following path and keys:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer

Reg_SZ: Logging
Value: voicewarmupx
The letters in the value field can be in any order. Each letter turns on a different logging mode. Each letter's actual function is as follows for MSI version 1.1:
v - Verbose output
o - Out-of-disk-space messages
i - Status messages
c - Initial UI parameters
e - All error messages
w - Non-fatal warnings
a - Start up of actions
r - Action-specific records
m - Out-of-memory or fatal exit information
u - User requests
p - Terminal properties
+ - Append to existing file
! - Flush each line to the log
x - Extra debugging information. The "x" flag is available only on Windows Server 2003 and later operating systems,and on the MSI redistributable version 3.0,and on later versions of the MSI redistributable.

"*" - Wildcard,log all information except for the v and the x option. To include the v and the x option,specify "/l*vx".
Note This should be used only for troubleshooting purposes and should not be left on because it will have adverse effects on system performance and disk space. Each time you use the Add/Remove Programs tool in Control Panel,a new Msi*.log file is created.

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...