Download and unzip these files
Then double click the install-foxpro-runtime-deps.cmd to install FoxPro Runtime Dependencies
| @echo off | |
| @echo Downloading VFP 9.0 Runtime... | |
| curl -o VFP9SP2RT.exe https://raw.githubusercontent.com/VFPX/VFPRuntimeInstallers/master/VFP9SP2RT.exe | |
| @echo Downloading VFP ODBC Driver... | |
| curl -o VFPODBC.msi https://raw.githubusercontent.com/VFPX/VFP9SP2Hotfix3/master/VFPODBC.msi | |
| @echo Downloading VFP OLEDB Driver... | |
| curl -o VFPOLEDBSetup.msi https://raw.githubusercontent.com/VFPX/VFP9SP2Hotfix3/master/VFPOLEDBSetup.msi | |
| @echo Installing VFP 9.0 Runtime... | |
| .\VFP9SP2RT.exe /S | |
| @echo Installing VFP ODBC Driver... | |
| msiexec.exe /i .\VFPODBC.msi /QN /L*V ".\vfpodbc.log" | |
| @echo Installing VFP OLEDB Driver... | |
| msiexec.exe /i .\VFPOLEDBSetup.msi /QN /L*V ".\vfpoledb.log" |