How to avoid downloads error from Windows 2022 template creation #8635
-
Hi all, Trying to generate a template for Windows2022, but, at each attempt it fails on some random error like : And last time on the mongo db, because name of the release was not OK in the script which download Mongo DB Is it possible to continue on this errors ? because my goal is to execute automatic nigthly builds of templates, without failures ? Thanks for you're help, and you're incredible work on this git !!! Nicolas |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, @nico3133. Checksum comparison was introduced recently in order to fit some security and compliance requirements. If you don't need it you can alter behavior of corresponding functions. E.g. you may replace Also it's always recommended to build images from main branch and avoid using releases or tags. More on that here: #8476 (comment) |
Beta Was this translation helpful? Give feedback.
Hi, @nico3133. Checksum comparison was introduced recently in order to fit some security and compliance requirements. If you don't need it you can alter behavior of corresponding functions. E.g. you may replace
throw
in Use-ChecksumComparison withWrite-Host
. Unfortunately, there is no any conventional way to disable that verification.Also it's always recommended to build images from main branch and avoid using releases or tags. More on that here: #8476 (comment)