gitlink_help_center/install-node.bat

7 lines
376 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
echo 正在下载Node.js安装程序...
powershell -Command "Invoke-WebRequest -Uri https://nodejs.org/dist/v20.11.1/node-v20.11.1-x64.msi -OutFile node-installer.msi"
echo 下载完成正在安装Node.js...
start /wait msiexec /i node-installer.msi /quiet /norestart
echo 安装完成请重新打开命令提示符或PowerShell以使用Node.js和npm。
pause