Error specifying unknown: 0x80240037

Error specifying unknown: 0x80240037

Many times, when we deploy the developed software to the user's machine, there will always be various unexpected errors. Recently, when installing the VC++ runtime library on a computer with the original Windows7 system, the installation failed inexplicably. Then the error code is: 0x80240037 error, I have been looking for a long time to find a solution, so how do we find this error step by step, and install this smoothly?

  Then we open the log file, find out what went wrong, and see how this error is caused?

Search the entire log file, find the first place where 0x80240037 appears, and then find this key code:

1

Applying execute package: Windows7_MSU_x64, action: Install, path: C:\ProgramData\Package Cache\54050A5F8AE7F0C56E553F0090146C17A1D2BF8D\packages\Patch\x64\Windows6.1-KB2999226-x64.msu, arguments: \'"C:\Windows\SysNative\wusa.exe" "C:\ProgramData\Package Cache\54050A5F8AE7F0C56E553F0090146C17A1D2BF8D\packages\Patch\x64\Windows6.1-KB2999226-x64.msu" /quiet /norestart\'

  That is, an error occurred when installing Windows6.1-KB2999226-x64.msu, and then the error 0x80240037 popped up. I will not explain the type of this file for the time being, but directly explain how to solve this problem.

  1 Search for the file Windows6.1-KB2999226-x64.msu under Windows, and found this file under the ProgramData folder.

  2 The searched file should be Windows6.1-KB2999226-x64.msu, we will change the suffix of this file to .cab file.

  3 Then right-click and unzip to the current folder, there will be several more files, including a Windows6.1-KB2999226-x64.cab file.

  4 Run cmd as an administrator, and enter the following command dism /online /add-package /packagepath: "The location of Windows6.1-KB2999226-x64.cab under the folder just unzipped"

  5 Click Enter, the following interface appears, wait for the execution to complete.

  6 After the deployment is complete, if you are prompted to restart, restart the computer, and then reinstall the VC++2015 runtime library.

  7 Reinstall, and the installation completes without a hitch.

Guess you like

Origin blog.csdn.net/lystest/article/details/126340399