Merge pull request #756 from Romanitho/fix-visual
Fixes pre-installed visual c++ 2022pull/757/head v2.0.3-n
commit
58cca62d04
|
@ -5,9 +5,9 @@ function Install-Prerequisites {
|
|||
Write-ToLog "Checking prerequisites..." "Yellow"
|
||||
|
||||
#Check if Visual C++ 2019 or 2022 installed
|
||||
$Visual2019 = "Microsoft Visual C++ 2015-2019 Redistributable*"
|
||||
$Visual2022 = "Microsoft Visual C++ 2015-2022 Redistributable*"
|
||||
$path = Get-Item HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object { $_.GetValue("DisplayName") -like $Visual2019 -or $_.GetValue("DisplayName") -like $Visual2022 }
|
||||
$VisualMinVer = "14.40.0.0"
|
||||
$path = Get-Item HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object { $_.GetValue("DisplayName") -like $Visual2022 -and $_.GetValue("DisplayVersion") -gt $VisualMinVer }
|
||||
if (!($path)) {
|
||||
try {
|
||||
Write-ToLog "MS Visual C++ 2015-2022 is not installed" "Red"
|
||||
|
|
Loading…
Reference in New Issue