This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install-node-user.ps1 | |
| # Nainstaluje pevně danou Node.js LTS verzi do %LOCALAPPDATA%\nodejs bez admin práv | |
| # a přidá ji do User PATH. | |
| $ErrorActionPreference = 'Stop' | |
| $ver = 'v24.15.0' | |
| $dest = Join-Path $env:LOCALAPPDATA 'nodejs' | |
| $zipName = "node-$ver-win-x64.zip" |