sha256:c6360fd86debace1b7dd37eb702d10498bb386f8628f32a80f306969142b54a6
OS/ARCH
Compressed size
2.32 GB
Last pushed
about 14 hours by doijanky
Type
Image
Vulnerabilities
No Vulnerabilities Found
Manifest digest
sha256:c0632e3771a2c476d555a89a32c9c7e10c8df80a055793b368e8b6815b640ab3
0
Apply image 10.0.26100.32230
1.52 GB
1
Install update 10.0.26100.33438
934.57 MB
2
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop';]
1.3 KB
3
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HAXETOOLKIT_PATH=C:\HaxeToolkit
1.26 KB
4
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV NEKOPATH=C:\HaxeToolkit\neko
1.28 KB
5
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HAXEPATH=C:\HaxeToolkit\haxe
1.3 KB
6
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HAXE_STD_PATH=C:\HaxeToolkit\haxe\std
1.29 KB
7
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HAXELIB_PATH=C:\HaxeToolkit\haxe\lib
1.29 KB
8
powershell -Command $ErrorActionPreference = 'Stop'; $newPath = ('{0};{1};{2}' -f $env:HAXEPATH, $env:NEKOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);
354.64 KB
9
powershell -Command $ErrorActionPreference = 'Stop'; $url = 'https://download.microsoft.com/download/0/5/6/056dcda9-d667-4e27-8001-8a0c6971d6b1/vcredist_x86.exe'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'vcredist_x86.exe'; Write-Host 'Verifying sha256 (89f4e593ea5541d1c53f983923124f9fd061a1c0c967339109e375c661573c17) ...'; if ((Get-FileHash vcredist_x86.exe -Algorithm sha256).Hash -ne '89f4e593ea5541d1c53f983923124f9fd061a1c0c967339109e375c661573c17') { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; Start-Process -FilePath "vcredist_x86.exe" -ArgumentList "/Q" -Wait; Write-Host 'Removing installer...'; Remove-Item .\vcredist_x86.exe; Write-Host 'Complete.';
12.93 MB
10
powershell -Command $ErrorActionPreference = 'Stop'; New-Item -ItemType directory -Path $env:HAXETOOLKIT_PATH;
369.84 KB
11
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV NEKO_VERSION=2.4.1
1.28 KB
12
powershell -Command $ErrorActionPreference = 'Stop'; $url = 'https://github.com/HaxeFoundation/neko/releases/download/v2-4-1/neko-2.4.1-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'neko.zip'; Write-Host 'Verifying sha256 (3902933da42320e8bc04dbee07959ee9ff09a7848e9af48072396400cc3618c9) ...'; if ((Get-FileHash neko.zip -Algorithm sha256).Hash -ne '3902933da42320e8bc04dbee07959ee9ff09a7848e9af48072396400cc3618c9') { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; New-Item -ItemType directory -Path tmp; Expand-Archive -Path neko.zip -DestinationPath tmp; if (Test-Path tmp\neko.exe) { Move-Item tmp $env:NEKOPATH } else { Move-Item (Resolve-Path tmp\neko* | Select -ExpandProperty Path) $env:NEKOPATH }; Write-Host 'Removing ...'; Remove-Item -Path neko.zip, tmp -Force -Recurse -ErrorAction Ignore; Write-Host 'Verifying install ...'; Write-Host ' neko -version'; neko -version; Write-Host 'Complete.';
4.4 MB
13
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HAXE_VERSION=4.3.7
1.28 KB
14
powershell -Command $ErrorActionPreference = 'Stop'; $url = 'https://github.com/HaxeFoundation/haxe/releases/download/4.3.7/haxe-4.3.7-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile haxe.zip; Write-Host 'Verifying sha256 (29f7acb0fb9fc66a2b9f6bd9453af3474ccb14ebd9fd0142f351d7311c4010c9) ...'; if ((Get-FileHash haxe.zip -Algorithm sha256).Hash -ne '29f7acb0fb9fc66a2b9f6bd9453af3474ccb14ebd9fd0142f351d7311c4010c9') { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; New-Item -ItemType directory -Path tmp; Expand-Archive -Path haxe.zip -DestinationPath tmp; if (Test-Path tmp\haxe.exe) { Move-Item tmp $env:HAXEPATH } else { Move-Item (Resolve-Path tmp\haxe* | Select -ExpandProperty Path) $env:HAXEPATH }; Write-Host 'Removing ...'; Remove-Item -Path haxe.zip, tmp -Force -Recurse -ErrorAction Ignore; Write-Host 'Verifying install ...'; Write-Host ' haxe -version'; haxe -version; Write-Host ' haxelib version'; haxelib version; Write-Host 'Complete.';
10.84 MB
15
powershell -Command $ErrorActionPreference = 'Stop'; New-Item -ItemType directory -Path $env:HAXELIB_PATH;
368.42 KB
16
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) ENV HOMEDRIVE=C:
1.28 KB
17
powershell -Command $ErrorActionPreference = 'Stop'; $newPath = ('{0}\Users\{1}' -f $env:HOMEDRIVE, $env:USERNAME); Write-Host ('Updating HOMEPATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('HOMEPATH', $newPath, [EnvironmentVariableTarget]::Machine);
373.9 KB
18
powershell -Command $ErrorActionPreference = 'Stop'; (New-Object System.Net.WebClient).DownloadString('https://lib.haxe.org/p/hxcpp/4.2.1/download/') >$null
391.36 KB
19
powershell -Command $ErrorActionPreference = 'Stop'; #(nop) CMD ["haxe"]
1.29 KB