Jump to content
Ketarin forum
Google Chrome Enterprise (32-bit) (Bundle)
Guest
By Guest, 08/30/2018
  • 43 downloads
  • Updated:

File Details

  • Website URL https://www.google.com/intl/en/chrome/business/browser/admin/
  • User Agent
  • Category Internet\Browsers
  • User Notes [Description] A modern browser for work. Deploy and manage Chrome for Work for your organization. [Official Download Sources] https://www.google.com/intl/en/chrome/business/browser/admin/ [Installer Type] MSI [Changelog] http://googlechromereleases.blogspot.com.es/search/label/Stable%20updates ---------- corrections and improvements are welcome - @coldscientist (Ketarin forums)

(Show)XML Contents

            <?xml version="1.0" encoding="utf-8"?>
<Jobs>
  <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="fc0c951b-0523-4f88-b3a7-0da47825db35">
    <WebsiteUrl>https://www.google.com/intl/en/chrome/business/browser/admin/</WebsiteUrl>
    <UserAgent/>
    <UserNotes>[Description]
 A modern browser for work. Deploy and manage Chrome for Work for your organization.


[Official Download Sources]
https://www.google.com/intl/en/chrome/business/browser/admin/


[Installer Type]
MSI


[Changelog]
http://googlechromereleases.blogspot.com.es/search/label/Stable%20updates



----------
corrections and improvements are welcome - @coldscientist (Ketarin forums)
</UserNotes>
    <LastFileSize>67339912</LastFileSize>
    <LastFileDate>2018-08-07T22:17:54-03:00</LastFileDate>
    <IgnoreFileInformation>false</IgnoreFileInformation>
    <DownloadBeta>Default</DownloadBeta>
    <DownloadDate xsi:nil="true"/>
    <CheckForUpdatesOnly>false</CheckForUpdatesOnly>
    <VariableChangeIndicator/>
    <HashVariable/>
    <HashType>None</HashType>
    <CanBeShared>true</CanBeShared>
    <ShareApplication>true</ShareApplication>
    <ExclusiveDownload>false</ExclusiveDownload>
    <HttpReferer>https://www.google.com/intl/en/chrome/business/browser/admin/</HttpReferer>
    <SetupInstructions>
      <SetupInstruction xsi:type="CustomSetupInstruction">
        <Code>/*
  Enter a custom C# script here. C# is case sensitive.
  "app" references the current application.
  Example:
  MessageBox.Show(app.Name);
  
  = Notable methods =
  app.PreviousLocation
    Corresponds to the variable {file}

  app.Variables.ReplaceAllInString("Any {text} with variables.")
    Replaces all known variables in a given string.
    Example: string new = app.Variables.ReplaceAllInString("{file}")

  return;
    Exits the script.

  Abort("Error text\r\n");
    Exits the script with a given error.
*/
Func<List<string>, int> Exec = new Func<List<string>, int>( (list) =>
{
    string fileName, arguments, Verb;
    fileName = arguments = Verb = string.Empty;
    bool waitForExit = true;

    // Ketarin.Forms.LogDialog.Log("Exec - list.Count: " + list.Count);

    switch (list.Count)
    {
        case 1:
            fileName = list[0];
            break;
        case 2:
            fileName = list[0];
            arguments = list[1];
            break;
        case 3:
            fileName = list[0];
            arguments = list[1];
            Verb = list[2];
            break;
        case 4:
            fileName = list[0];
            arguments = list[1];
            Verb = list[2];
            waitForExit = System.Convert.ToBoolean(list[3]);
            break;
    }

    System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(fileName, arguments);
    startInfo.Verb = Verb;
    Ketarin.Forms.LogDialog.Log(fileName + " " + arguments);

    var process = System.Diagnostics.Process.Start (startInfo);
    if (waitForExit)
    {
        process.WaitForExit();
    }

    Ketarin.Forms.LogDialog.Log("process.ExitCode: " + process.ExitCode);
    return process.ExitCode;
});
			
List<string> ExecList = new List<string> {"msiexec", "/i \"" + System.IO.Path.Combine(System.IO.Path.GetDirectoryName(app.PreviousLocation), "GoogleChromeEnterpriseBundle", "Installers", "GoogleChromeStandaloneEnterprise.msi") + "\"" + " /qb REBOOT=ReallySuppress", "runas" };
int errorCode = Exec(ExecList);
if (errorCode != 0)
{
    Abort("Installation failed (" + errorCode + ").");
}
</Code>
        <Type>CS</Type>
      </SetupInstruction>
    </SetupInstructions>
    <Variables>
      <item>
        <key>
          <string>version</string>
        </key>
        <value>
          <UrlVariable>
            <RegexRightToLeft>false</RegexRightToLeft>
            <VariableType>RegularExpression</VariableType>
            <Regex>(?<=Chrome )[\d.]+</Regex>
            <Url>http://www.softpedia.com/get/Internet/Browsers/Google-Chrome.shtml</Url>
            <Name>version</Name>
          </UrlVariable>
        </value>
      </item>
      <item>
        <key>
          <string>download_url</string>
        </key>
        <value>
          <UrlVariable>
            <RegexRightToLeft>false</RegexRightToLeft>
            <VariableType>RegularExpression</VariableType>
            <Regex>href="(\S+GoogleChromeEnterpriseBundle.zip\S+)"</Regex>
            <Url>https://support.google.com/chrome/a/answer/7650032?hl=en</Url>
            <Name>download_url</Name>
          </UrlVariable>
        </value>
      </item>
    </Variables>
    <ExecuteCommand/>
    <ExecutePreCommand/>
    <ExecuteCommandType>CS</ExecuteCommandType>
    <ExecutePreCommandType>Batch</ExecutePreCommandType>
    <Category>Internet\Browsers</Category>
    <SourceType>FixedUrl</SourceType>
    <PreviousLocation/>
    <DeletePreviousFile>true</DeletePreviousFile>
    <Enabled>true</Enabled>
    <FileHippoId/>
    <LastUpdated>2018-08-30T18:25:33.4290744-03:00</LastUpdated>
    <TargetPath>S:\Medicina\Google\Chrome\</TargetPath>
    <FixedDownloadUrl>{download_url}</FixedDownloadUrl>
    <Name>Google Chrome Enterprise (32-bit) (Bundle)</Name>
  </ApplicationJob>
</Jobs>

        

Comments

There are no comments to display.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Add your comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...


×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.