Skip to content

Instantly share code, notes, and snippets.

@runo280
Last active April 29, 2025 11:40
Show Gist options
  • Save runo280/e4be3e04c24b463b55ddf012c5cfbdc4 to your computer and use it in GitHub Desktop.
Save runo280/e4be3e04c24b463b55ddf012c5cfbdc4 to your computer and use it in GitHub Desktop.
@superalfan
Copy link

what virtualbox and genymotion version ? to run this ova file

@CypherpunkSamurai
Copy link

@zlocate
Copy link

zlocate commented Apr 29, 2025

@zlocate
Copy link

zlocate commented Apr 29, 2025

How to get all available download links

How to Obtain Direct Image URLs:

  1. Register and Activate a Trial License
    Sign up and activate a trial license at:
    https://www-v1.genymotion.com/account

  2. Open the OS Images Page
    Visit this URL (replace parameters as needed):

https://cloud.genymotion.com/patterns/os-images?desktop_version=3.9.0&arch=x86&arch=x86_64

  • desktop_version: Genymotion version (e.g., 3.9.0)
  • arch: Image architecture (x86 or x86_64)
  1. Open Developer Tools
    Use one of these methods:
  • Press F12 (Windows/Linux) or Cmd+Option+I (Mac)
  • Right-click β†’ Inspect β†’ Go to the Console tab
  1. Run the Script in Console
    Paste this code into the console and press Enter:
JSON.parse(document.body.textContent).map((a)=>`https://dl.genymotion.com/dists/${a.name.split(" ")[1]}/ova/${a.image_uri}`).join("\n")
  1. Copy the Links
    Right-click on the output β†’ Copy string contents β€” you’ll get all direct download links.

How it works:

  • extract end parse response body as json.
JSON.parse(document.body.textContent)
  • generate download link for image
`https://dl.genymotion.com/dists/${a.name.split(" ")[1]}/ova/${a.image_uri}`
  • join array of urls to string with newline delimiter
.join("\n")

Example Output:

Direct download links list example

https://dl.genymotion.com/dists/15.0/ova/genymotion_vbox86p_15.0_250415_142726.ova

https://dl.genymotion.com/dists/14.0/ova/genymotion_vbox86p_14.0_241018_182648.ova

https://dl.genymotion.com/dists/13.0/ova/genymotion_vbox86p_13.0_241011_134840.ova

https://dl.genymotion.com/dists/12.1/ova/genymotion_vbox86p_12.1_241011_083402.ova

https://dl.genymotion.com/dists/12.0/ova/genymotion_vbox86p_12.0_241011_093738.ova

https://dl.genymotion.com/dists/11.0/ova/genymotion_vbox86p_11.0_230908_144010.ova

https://dl.genymotion.com/dists/10.0/ova/genymotion_vbox86p_10.0_230907_084718.ova

https://dl.genymotion.com/dists/9.0/ova/genymotion_vbox86p_9.0_230911_134912.ova

https://dl.genymotion.com/dists/8.1/ova/genymotion_vbox86p_8.1_220830_123320.ova

https://dl.genymotion.com/dists/8.0/ova/genymotion_vbox86p_8.0_220830_124424.ova

https://dl.genymotion.com/dists/7.1.0/ova/genymotion_vbox86p_7.1_221010_143825.ova

https://dl.genymotion.com/dists/7.0.0/ova/genymotion_vbox86p_7.0_220830_132702.ova

https://dl.genymotion.com/dists/6.0.0/ova/genymotion_vbox86p_6.0_220830_104856.ova

https://dl.genymotion.com/dists/5.1.0/ova/genymotion_vbox86p_5.1_220830_111932.ova

https://dl.genymotion.com/dists/5.0.0/ova/genymotion_vbox86p_5.0_220830_113731.ova

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment