Setup script setup-v2026.06.14-613f026
Player onboarding script for the NegativeZone Minecraft server.
Auto-published when docs/assets/setup.ps1 changed on main.
Install command
irm https://github.com/camcast3/MinecraftInfra/releases/latest/download/setup.ps1 | iexSHA-256
605790181045491f25c88926dc46f4aa2368fcb526ea6c0683318344e4368cd9
Verify before running (optional, recommended)
$url = 'https://github.com/camcast3/MinecraftInfra/releases/download/setup-v2026.06.14-613f026/setup.ps1'
$want = '605790181045491f25c88926dc46f4aa2368fcb526ea6c0683318344e4368cd9'
$body = irm $url
$got = (Get-FileHash -InputStream ([IO.MemoryStream]::new([Text.Encoding]::UTF8.GetBytes($body))) -Algorithm SHA256).Hash.ToLower()
if ($got -eq $want) { iex $body } else { throw "SHA-256 mismatch: $got vs $want" }