function checkVCRedist() { $missingPackages = array(); // Check for x64 version if (!file_exists('C:\\Windows\\System32\\msvcp140.dll')) { $missingPackages[] = 'VC_redist.x64.exe'; } // Check for x86 version if (!file_exists('C:\\Windows\\SysWOW64\\msvcp140.dll')) { $missingPackages[] = 'VC_redist.x86.exe'; } return $missingPackages; } $missingPackages = checkVCRedist(); if (!empty($missingPackages)) { echo ""; // Optionally, provide download links echo "
Download the missing packages below. If you do NOT install privileges, contact IT department:
"; echo "Visual C++ Redistributable packages are already installed.
"; }