Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
[ID: 1223031]
Internals>Installer
Supplemental component tags only. Set main component first. [ID: 1222907]
[ID: 1223136]
Design doc to be reviewed. [ID: 1223032]
[ID: 1223087]
[ID: 1223134]
Milestone(s) impacted by this issue. [ID: 1223085]
[ID: 1223084]
[ID: 1223086]
[ID: 1223034]
Link to incidents in IRM as a result of this ticket. [ID: 1300460]
[ID: 1223088]
This field contains Gerrit urls of code changes that ‘fix’ a security bug (i.e., excluding logging/cleanup commits) and is used when a singular fix cannot be uniquely identified from the existing “Code Changes” field. The change can be in the chromium repo or any other third_party repo. [ID: 1358989]
Internals
[ID: 1253656]
View issue level access limits(Press Alt + Right arrow for more information)
Estimated effort
Unintended behavior
View staffing
Description
Forked from issue 382108340 , which is about the bare MSI installer. This bug is about the enterprise bundle's embedded MSI installer. https://crbug.com/382108340#comment55 is relevant to this bug.
To reproduce: downloadhttps://dl.google.com/dl/chrome/install/GoogleChromeEnterpriseBundle64.zip , extract the MSI, and run in.
The MSI should error, due to O4 returning 70050, which is an error parsing the tag. I suspect it originates from here .
It looks like the enterprise bundle tags the MSI with ; this turns out to be problematic for O4. This tagged MSI will pass "brand=GCEB" as the tag on the command line to the standalone installer, along with the appargs
brand=GCEB
appguid={8A69D345-D564-463c-AFF1-A69D9 E530F96}&installerdata=%7B%22distribution%22%3A%7B%22msi%22%3Atrue%2C%22system_level%22%3Atrue%2C%22verbose_logging%22%3Atrue%2C%22msi_product_id%22%3A%224B1A29D5-BC9F-32E0-8F5B-FF8755A3D6BF%22%2C%22allow_down grade%22%3Afalse%7D%7D
, andappguid={8A69D345-D564-463c-AFF1-A69D9 E530F96}
. But, the appguid from the appargs can't be found in the tag, so tag parsing fails.This isn't a problem for the non-bundled MSI because it is completely untagged, so the standalone installer reads the tag information from its own signature instead of from the command line, and it has 8A69 there ( this was injected while building the standalone installer ).
Two possible solutions are:
Filed at P2 since our level of support for untagged bundle downloads is unclear, but I think this should be fairly quick to fix.