2012-07-05 122 views
4

忙于尝试通过nodejs网站上的windows下载来设置node.js。它似乎一直运行好,直到它结束时,它击中“创建shortcurts ...”,然后开始回滚,并得到一个非常无用的一般错误。Node.js安装失败。日志在哪里?

有没有日志文件我可以检查看看发生了什么?

+0

什么错误时,你正试图安装nodejs – Adrian 2012-07-05 09:24:54

+0

这就是问题 - 没有具体的错误。 “由于错误,安装过早结束”在创建快捷方式时发生在流程结束时 – Chev 2012-07-05 10:00:02

+0

有没有找到解决方案? – 2012-10-31 00:32:09

回答

1

我的最佳选择是使用命令行MSIEXEC工具as indicated on WiX's websitemsiexec /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.