Skip to content

Instantly share code, notes, and snippets.

@zachlankton
Last active February 21, 2023 15:11
Show Gist options
  • Save zachlankton/4c6d6506b3655cfd048aa1f2a7ccd2ba to your computer and use it in GitHub Desktop.
Save zachlankton/4c6d6506b3655cfd048aa1f2a7ccd2ba to your computer and use it in GitHub Desktop.
Install FoxPro Runtime Dependencies

Download and unzip these files

image

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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment