A set of PowerShell scripts that install a base developer environment and multiple languages for Windows.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
mkdir test
|
|
|
|
cd test
|
|
|
|
|
|
|
|
$scripts = 'python.ps1', 'cpp.ps1', 'nodejs.ps1', 'bunjs.ps1', 'ruby.ps1', 'go.ps1', 'zig.ps1', 'crystal.ps1'
|
|
|
|
|
|
|
|
foreach($script in $scripts) {
|
|
|
|
irm https://git.learnjsthehardway.com/learn-code-the-hard-way/lcthw-windows-installers/raw/branch/master/$script -outfile $script
|
|
|
|
|
|
|
|
powershell -executionpolicy bypass .\$script
|
|
|
|
}
|