Setup script setup-v2026.06.14-c803bf1
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
11724c66cd4e0c7dc23c53f95ab0ecb3596d6278019ca3308703642005fa4314
Verify before running (optional, recommended)
$url = 'https://github.com/camcast3/MinecraftInfra/releases/download/setup-v2026.06.14-c803bf1/setup.ps1'
$want = '11724c66cd4e0c7dc23c53f95ab0ecb3596d6278019ca3308703642005fa4314'
$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" }