Ошибка развертывания Google Chrome

2516
Charles Gargent

Я пытаюсь развернуть Google Chrome. У меня есть GoogleChromeStandaloneEnterprise.msi Я это команда, которую я использовал

msiexec /i /qn /norestart GoogleChromeStandaloneEnterprise.msi /l*v chrome.log 

Я получаю 1722 ошибку, вот соответствующая часть из файла журнала

MSI (0C: 74) [10: 14: 46: 340]: Выполнение op: CustomActionSchedule (Action = DoInstall, ActionType = 3074, Source = BinaryData, Target = / silent / install "appguid = & appname = Google Chrome & needsAdmin = True & brand = GGRV "/ installsource enterprisemsi / appargs" appguid = & installerdata =% 7B% 22% 22% 22%% % 3Atrue% 2C% 22system_level% 22% 3Atrue% 2C% 22verbose_logging% 22% 3Atrue% 7D% 7D»,)

MSI (0C: 74) [10: 20: 00: 059]: Примечание: 1: 1722 2: DoInstall 3: C: \ WINDOWS \ Installer \ MSIF.tmp 4: / silent / install "appguid = & appname = Google Chrome & needsAdmin = True & brand = GGRV "/ installsource enterprisemsi / appargs" appguid = 22% %BB%%% 7%% 22msi% 22% 3Atrue% 2C% 22system_level% 22% 3Atrue% 2C% 22verbose_logging% 22% 3Atrue% 7D% 7D»

MSI (0C: 74) [10: 20: 00: 059]: Продукт: Google Chrome - Ошибка 1722. Проблема с этим пакетом установщика Windows. Программа, запущенная как часть установки, завершилась не так, как ожидалось. Обратитесь в службу поддержки или к поставщику пакета. Действие DoInstall, расположение: C: \ WINDOWS \ Installer \ MSIF.tmp, команда: / silent / install "appguid = & appname = Google Chrome & needsAdmin = True & brand = GGRV" / installsource enterprisemsi / appargs «AppGUID = & installerdata =% 7B% 22distribution% 22% 3A% 7B% 22msi% 22% 3Atrue% 2C% 22system_level% 22% 3Atrue% 2C% 22verbose_logging% 22% 3Atrue% 7D % 7D»

Я, очевидно, погуглил эту проблему, она была упомянута, но реального решения не дано.

3

2 ответа на вопрос

1
MDT Guy

You're close, but you may want to try this instead:

msiexec.exe /qb- /l*vx %LogPath%\chrome.log REBOOT=ReallySuppress UILevel=67 ALLUSERS=2 /i GoogleChromeStandaloneEnterprise.msi 

I use this exact syntax when I deploy msi files in MDT 2012, works every time.

  • Reboot=ReallySuppress - Best way to make sure 110% that you're suppressing those reboots.
  • UILevel=67 - Hides the install wizard, makes the install "automagical"
  • AllUsers=2 - Makes sure the shortcuts icons get put in the user's profile correctly.

I suspect you're missing the logpath variable? by default, its in windows/temp I believe, but double check.

0
Abhay

Убейте «GoogleUpdate.exe» из диспетчера задач перед установкой приложения

Похожие вопросы