How to install Node.js in custom folder silently on Windows?

node.js, silent-installer, windows

Solution

I found it.

This is the correct way to install Node.js on Windows silently in a custom directory.

msiexec.exe /i node-v0.10.23-x64.msi INSTALLDIR="C:\Tools\NodeJS" /quiet

Problem

I create a script to auto install all my dev stack on Windows. I have a problem with Node.js What's the command line to install node-v0.10.23-x64.msi in C:\Tools silently? Thanks.

Original source