diff options
| author | bozo.kopic <bozo@kopic.xyz> | 2021-11-10 21:25:07 +0100 |
|---|---|---|
| committer | bozo.kopic <bozo@kopic.xyz> | 2021-11-10 21:25:07 +0100 |
| commit | 13e83a27c469e0d8dff12837b58439bb265606eb (patch) | |
| tree | 8f47b431a6adcd6e8bcc3a4a30ada400591f7296 /vm | |
| parent | c736c0068507bc1101268f944b7788375ebe6011 (diff) | |
.
Diffstat (limited to 'vm')
| -rwxr-xr-x | vm/vm-win10 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vm/vm-win10 b/vm/vm-win10 index 420c0cb..c2b53fd 100755 --- a/vm/vm-win10 +++ b/vm/vm-win10 @@ -51,6 +51,8 @@ Set-Service -Name wuauserv -StartupType Disabled \$wc = New-Object System.Net.WebClient \$wc.DownloadFile("https://www.python.org/ftp/python/3.8.9/python-3.8.9-amd64.exe", "c:\\\\Users\\\\User\\\\Downloads\\\\python-3.8.9-amd64.exe") +\$wc.DownloadFile("https://www.python.org/ftp/python/3.9.8/python-3.9.8-amd64.exe", + "c:\\\\Users\\\\User\\\\Downloads\\\\python-3.9.8-amd64.exe") \$wc.DownloadFile("https://repo.msys2.org/distrib/x86_64/msys2-x86_64-20210228.exe", "c:\\\\Users\\\\User\\\\Downloads\\\\msys2-x86_64-20210228.exe") \$wc.DownloadFile("https://nodejs.org/dist/v14.16.1/node-v14.16.1-x64.msi", @@ -58,17 +60,19 @@ Set-Service -Name wuauserv -StartupType Disabled \$wc.DownloadFile("https://yarnpkg.com/latest.msi", "c:\\\\Users\\\\User\\\\Downloads\\\\yarn.msi") -\$env:Path = "C:\\Python38;C:\\Python38\\Scripts;C:\\msys64\\mingw64\\bin;C:\\msys64\\usr\\bin;" + \$env:Path +\$env:Path = "C:\\Python39;C:\\Python39\\Scripts;C:\\msys64\\mingw64\\bin;C:\\msys64\\usr\\bin;" + \$env:Path \$env:Path += ";C:\\nodejs;C:\\Yarn\\bin" [Environment]::SetEnvironmentVariable( "Path", \$env:Path, [System.EnvironmentVariableTarget]::Machine) cmd /C "c:\\Users\\User\\Downloads\\python-3.8.9-amd64.exe InstallAllUsers=1 TargetDir=c:\\Python38 /passive" +cmd /C "c:\\Users\\User\\Downloads\\python-3.9.8-amd64.exe InstallAllUsers=1 TargetDir=c:\\Python39 /passive" cmd /C "c:\\Users\\User\\Downloads\\node-v14.16.1-x64.msi INSTALLDIR=C:\\nodejs /passive" cmd /C "c:\\Users\\User\\Downloads\\yarn.msi INSTALLDIR=c:\\Yarn /passive" cmd /C "c:\\Users\\User\\Downloads\\msys2-x86_64-20210228.exe install -c --root c:\\msys64" cmd.exe /C "pacman -Syu --noconfirm" +cmd.exe /C "pacman -Syu --noconfirm" cmd.exe /C "pacman -Syu --noconfirm base-devel git mingw-w64-x86_64-toolchain socat" EOF mkisofs -J -l -R -V "init" -iso-level 4 -o $INIT_ISO_PATH $TMP_PATH |
