Hi Team,
I need help in chromium updater feature. Below are my queries regarding on-demand and auto/silent update.
1. Fo silent update, if I want to give UpdaterSetup.exe (generated by target installer) to the end user, I am not able to download and install the exe.
2. "On your marks" screen comes when I run from VS, but the screen gets stuck for a while in order to copy out\Default contents to ChromiumUpdater folder. Is this step necessary and any way to avoid this step?
3. omaha server is a paid service it seems.
https://omaha4.omaha-consulting.com/quest-global/service/update2/json
Any way to upload my mini_installer anywhere?
4. Any other flag or target do I need to use?
5. For on-demand update through settings/help, only version_updater_basic.cc is integrated instead of win file which can be included though is_chrome_branded flag.
Regards,
Milan
Hi Team,
I need help in chromium updater feature. Below are my queries regarding on-demand and auto/silent update.
1. Fo silent update, if I want to give UpdaterSetup.exe (generated by target installer) to the end user, I am not able to download and install the exe.
Update error 118
2. "On your marks" screen comes when I run from VS, but the screen gets stuck for a while in order to copy out\Default contents to ChromiumUpdater folder. Is this step necessary and any way to avoid this step?
3. omaha server is a paid service it seems.
https://omaha4.omaha-consulting.com/quest-global/service/update2/json
Any way to upload my mini_installer anywhere?
4. Any other flag or target do I need to use?
5. For on-demand update through settings/help, only version_updater_basic.cc is integrated instead of win file which can be included though is_chrome_branded flag.
--
Regards,
Milan
You received this message because you are subscribed to the Google Groups "Chrome Updates Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chrome-updates-...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chrome-updates-dev/CAF21F1%2BJVa_abfAB_wE8SdzToTK_qhq1rZeHD1tvfxgMDV%2BAPQ%40mail.gmail.com.
An error occurred while checking for updates: Update check failed to start (error code 3: 0X80040154).
Hi Sorin,Thanks for all your help.I have enabled on demand update through settings in Windows platform.I am stuck with this issue now.An error occurred while checking for updates: Update check failed to start (error code 3: 0X80040154).
It's failing in google_update_win.cc. I haven't enabled is_chrome_branded flag btw.const CLSID& google_update_clsid = system_level_install? CLSID_GoogleUpdate3WebSystemClass: CLSID_GoogleUpdate3WebUserClass;Microsoft::WRL::ComPtr<IClassFactory> class_factory;HRESULT hresult = S_OK;// For a user-level install, update checks and updates can both be done by a// normal user with the UserClass. For a system-level install, update checks// can be done by a normal user with the MachineClass. Newer versions of// GoogleUpdate allow normal users to also install system-level updates// without requiring elevation.if (!system_level_install ||!install_update_if_possible ||!IsElevationRequiredForSystemLevelUpdates()) {hresult = ::CoGetClassObject(google_update_clsid, CLSCTX_ALL, nullptr,IID_PPV_ARGS(&class_factory));} else {// With older versions of GoogleUpdate, a system-level update requires Admin// privileges. Elevate while instantiating the MachineClass.hresult = CoGetClassObjectAsAdmin(elevation_window, google_update_clsid,IID_PPV_ARGS(&class_factory));}if (FAILED(hresult))return hresult;
chrome_appid.cc: