Getting rollback in creating shortcuts on installation of node js in windows 7

可紊 提交于 2019-12-12 14:04:42

问题


I'm trying to install nodejs server on my Windows 7 machine. I've downloaded the latest version of node (node-v0.8.11-x64.msi) from the official site and tried to install it.

When the process reaches "Creating of shortcuts " I'm getting rollback installation with an error.

Does anybody has the same problem?


回答1:


I simply removed the option of "creating shortcut to online documentation" during the installation. :)




回答2:


The source of the error can vary, the best method to detect is to create a verbose log of the installation. Once you have that you can search for "value 3", usually this string appears when a standard/custom action fails during the install.




回答3:


These two steps fixed the problem for me.

  1. Copy the msi to a local directory on your hard drive. Your “downloads” folder may be on a network share in a roaming active directory environment so it is not really local. (I believe this true local copy of the msi is important as it seems to re-establish the owner chain of the msi file as belonging to you, not the internet.)

  2. Open an administrative command prompt. Change to the directory that you copied the msi to and then run the file. (Similar to C:\LocalDir>node-v0.10.35-x64.msi )




回答4:


Try this:

msiexec /i node-v0.12.0-x86.msi /passive ADDLOCAL=ALL REMOVE=Docume ntationShortcuts ALLUSERS=1



来源:https://stackoverflow.com/questions/12704241/getting-rollback-in-creating-shortcuts-on-installation-of-node-js-in-windows-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!