Any can tell from this log why the install failed, exactly? #2354
-
2023-11-16 09:30:50,526 2872 [DEBUG] - _ Chocolatey:ChocolateyInstallCommand - Normal Run Mode _ $checksum = 'AC2044DE404389FE8864AA1692323248E9262E0515AFC15BF6B3B5993BDF0948' Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -Checksum "$checksum" -ChecksumType "$checksumType" |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
The error is:
This isn't a package issue. The installer exited with an abnormal error code. |
Beta Was this translation helpful? Give feedback.
-
Should I reinstall chocolatey?, or how to fix error 1 |
Beta Was this translation helpful? Give feedback.
-
Hi pauby, thanks for your insights. I'm little confused as I believe I pasted in the log notes above. Is there another log that I should be looking at? Can you enlighten me plz. thanks. |
Beta Was this translation helpful? Give feedback.
-
Thanks Paul. I did some lite investigating and it appears I have K-Lite pack version 17.9.6 installed, while the choco update attempts to update to 17.9.4. Would that be the problem? And if so, why would choco not specify that a higher version is already installed? Curious thank you. I'm new to choco and all this stuff so it's all a magic to me, but with the help of good men such as yourself I attempt to learn and master this. |
Beta Was this translation helpful? Give feedback.
That very well could be the problem. You likely would have to look at logs from the
.exe
installer, or run the installer without silent arguments to see if that is the cause for the error code it produces.Because the
k-litecodecpackfull
was not installed, so when you ranchoco install k-litecodecpackfull
, then Chocolatey CLI saw that the package was not installed, and so started to install the package, but then the.exe
produced an error code, and so failed the installation. Chocolatey installs the package, and runs the installation script, then the installation script is wha…