https://github.com/frontear/download-graal
A simple script to automatically setup a valid GraalVM Java distribution for Luna Pixel Studios' users
https://github.com/frontear/download-graal
Last synced: 4 months ago
JSON representation
A simple script to automatically setup a valid GraalVM Java distribution for Luna Pixel Studios' users
- Host: GitHub
- URL: https://github.com/frontear/download-graal
- Owner: Frontear
- License: gpl-3.0
- Created: 2024-06-20T21:40:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-20T19:03:49.000Z (7 months ago)
- Last Synced: 2025-07-20T21:07:10.578Z (7 months ago)
- Language: PowerShell
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Download GraalVM
A simple powershell script to download a specific GraalVM Java distribution, written for the convenience of Luna Pixel Studios' users.
## Table of Contents
- [Usage](#usage)
- [Common Issues](#issues)
## Usage
1. Download the file `download_graal.ps1` to your system.
2. Right click on the file and press "Run with PowerShell"
3. Follow the prompts on the terminal
## Issues
It's possible your system may not allow you to run the script. This is a windows 11 "security" feature that must be circumvented. There are two solutions to this, a temporary one that will work on only one file (in this case mine), or a permanent script that will make it possible to run all scripts you download. The choice is yours.
### Temporary Fix
- Open PowerShell and run the snippet below
```powershell
powershell.exe -NoProfile -ExecutionPolicy Bypass -File C:\Users\YOUR_USERNAME\Downloads\download_graal.ps1 # replace the `-File` path with your own file path
```
### Permanent Fix
- Open PowerShell with Administrator privileges and run the snippet(s) below
```powershell
Set-ExecutionPolicy RemoteSigned
Unblock-File -Path C:\Users\YOUR_USERNAME\Downloads\download_graal.ps1 # not necessary always but sometimes
```
## License
This project is licensed under the GNU GPL v3 License. Please be mindful of this when forking, sharing, and redistributing the software.