Skip to content

Instantly share code, notes, and snippets.

@americoneto1
Last active February 21, 2019 03:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save americoneto1/feb1f693e855905aa1b3 to your computer and use it in GitHub Desktop.
Save americoneto1/feb1f693e855905aa1b3 to your computer and use it in GitHub Desktop.
Install NodeJS Silent on Windows
@echo off
NET SESSION >nul 2>&1
IF %ERRORLEVEL% NEQ 0 (
echo This setup needs admin permissions. Please run this file as admin.
pause
exit
)
set NODE_EXEC=node-v4.2.2-x64.msi
echo INSTALLING node ...
msiexec.exe /i %NODE_EXEC% /qn /l* node-install-log.txt
echo DONE!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment