Index: chrome/installer/util/google_update_util.cc |
diff --git a/chrome/installer/util/google_update_util.cc b/chrome/installer/util/google_update_util.cc |
index 980664194a54ae16815bf6f92f2f3656ac357262..195436b23cdfd6dbdbc744ab980989140eab8f9a 100644 |
--- a/chrome/installer/util/google_update_util.cc |
+++ b/chrome/installer/util/google_update_util.cc |
@@ -70,13 +70,15 @@ bool GetUserLevelGoogleUpdateInstallCommandLine(string16* cmd_string) { |
GetGoogleUpdateSetupExe(true)); // system-level. |
if (!google_update_setup.empty()) { |
CommandLine cmd(google_update_setup); |
- // Appends parameter "/install runtime=true&needsadmin=false /silent" |
+ // Appends "/install runtime=true&needsadmin=false /silent /nomitag". |
+ // NB: /nomitag needs to be at the end. |
// Constants are found in code.google.com/p/omaha/common/const_cmd_line.h. |
cmd.AppendArg("/install"); |
// The "&" can be used in base::LaunchProcess() without quotation |
// (this is problematic only if run from command prompt). |
cmd.AppendArg("runtime=true&needsadmin=false"); |
cmd.AppendArg("/silent"); |
+ cmd.AppendArg("/nomitag"); |
*cmd_string = cmd.GetCommandLineString(); |
} |
return !cmd_string->empty(); |