This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Description
Was recently trying to install Ahorn and needed to install Julia as a prereq, but when attempting to install to the Program Files directory in my D: drive, permission was denied, since the installer wasn't started with Admin privileges. I fixed this on my end by changing line 176 of the batch file from
start /wait "" "%~dp0%julia_filename%" to
powershell -Command "Start-Process '%~dp0%julia_filename%' -Verb RunAs -Wait"
Worked for me, but wasn't sure how y'all would want to handle this. Don't know if I'm the first to run into this issue or if this intended behavior, but wanted to make it known regardless.