Documentation
Release Verification
Verify installer integrity before running ARX artifacts.
Why verify
Verifying checksums ensures downloaded installer artifacts match official releases and were not modified in transit.
Official endpoints
https://arxmc.studio/install.shhttps://arxmc.studio/install.ps1https://arxmc.studio/arx-runtime.ziphttps://arxmc.studio/checksums.txtLinux/macOS verification
curl -fsSL https://arxmc.studio/checksums.txt -o checksums.txtcurl -fsSL https://arxmc.studio/install.sh -o install.shsha256sum -c checksums.txtWindows verification
Invoke-WebRequest https://arxmc.studio/checksums.txt -OutFile checksums.txtInvoke-WebRequest https://arxmc.studio/install.ps1 -OutFile install.ps1Get-FileHash .\install.ps1 -Algorithm SHA256Get-Content .\checksums.txtGitHub fallback
If website endpoints are unavailable, use release assets from:
https://github.com/Adichapati/ARX/releasesIf verification fails
- Do not run the file.
- Delete and re-download from official source.
- Re-check hash values.
- Report persistent mismatch to
security@arxmc.studio.