Microsoft Visual C++ Runtime 2008 and opsi-client-agent
Verfasst: 24 Jan 2017, 16:44
Look at this file:
\\opsi\opsi_depot\opsi-client-agent\files\opsi\setup.opsiscript
around line 398 we can find this:
However, the current version of the C++ 2008 runtime is 9.0.30729.6161
Shouldn't this be updated, and preferably the package itself with the newer version?
Yes, I know you keep the old versions for compability, but is this advice also given when there are security issues with the runtime? Don't know if this is the case with this exact runtime, but anyway.
\\opsi\opsi_depot\opsi-client-agent\files\opsi\setup.opsiscript
around line 398 we can find this:
Code: Alles auswählen
set $INST_vcredistx86_installed$ = "false"
if GetRegistryStringValue("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1F1C2DFC-2D24-3E06-BCB8-725134ADF989}] DisplayVersion") = "9.0.30729.4148"
comment "vcredistx86 Version 9.0.30729.4148 is installed"
set $INST_vcredistx86_installed$ = "true"
endif
if GetRegistryStringValue("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FF66E9F6-83E7-3A3E-AF14-8DE9A809A6A4}] DisplayVersion") = "9.0.21022"
comment "vcredistx86 Version 9.0.21022 is installed"
set $INST_vcredistx86_installed$ = "true"
endif
Shouldn't this be updated, and preferably the package itself with the newer version?
Yes, I know you keep the old versions for compability, but is this advice also given when there are security issues with the runtime? Don't know if this is the case with this exact runtime, but anyway.