Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
9,187
Downloads of v 3.10.56:
127
Last Update:
18 Nov 2019
Package Maintainer(s):
Software Author(s):
- WebGear Ltd
- New Zealand + Create Software + Stru.be + saller.NET + Big-R
Tags:
GO Contact Sync Mod Outlook Gmail Google email e-mail synchronization binary
GO Contact Sync Mod
This is not the latest version of GO Contact Sync Mod available.
Downloads:
9,187
Downloads of v 3.10.56:
127
Maintainer(s):
Software Author(s):
- WebGear Ltd
- New Zealand + Create Software + Stru.be + saller.NET + Big-R
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
GO Contact Sync Mod 3.10.56
This is not the latest version of GO Contact Sync Mod available.
All Checks are Passing
2 Passing Test
To install GO Contact Sync Mod, run the following command from the command line or from PowerShell:
To upgrade GO Contact Sync Mod, run the following command from the command line or from PowerShell:
To uninstall GO Contact Sync Mod, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download go-contact-sync-mod --internalize --version=3.10.56 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade go-contact-sync-mod -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade go-contact-sync-mod -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure go-contact-sync-mod installed
win_chocolatey:
name: go-contact-sync-mod
state: present
version: 3.10.56
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'go-contact-sync-mod' do
action :install
version '3.10.56'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: go-contact-sync-mod,
Version: 3.10.56,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller go-contact-sync-mod
{
Name = 'go-contact-sync-mod'
Ensure = 'Present'
Version = '3.10.56'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'go-contact-sync-mod':
provider => 'chocolatey',
ensure => '3.10.56',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install go-contact-sync-mod version="3.10.56" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 18 Nov 2019.
choco://go-contact-sync-mod
To use choco:// protocol URLs, install (unofficial) choco:// Protocol support
+++ NEWS +++
The newest versions of Google APIs client Library for .NET dropped support for .NET 4.0.
Minimum requirement for GO Contact Sync Mod (starting with v3.10.0) is .NET 4.5 which is not working on Windows XP.
GO Contact Sync Mod synchronizes your Microsoft Outlook contacts with your Google Mail address book, including pictures, categories and notes.
Since version 3.7.0 it also syncs your Outlook Calendar Appointments on demand to Google Calendar. This Mod fork adds many enhancements and bug fixes to the obviously dead project 'Go Contact Sync'.
Please find some guidelines how to sync your mobile phone contacts with Google Contacts here: http://www.google.com/mobile/sync
Features
- Full support of OAuth2 - no need for your password!
- Outlook Contacts sync
- Outlook Calendar Appointments sync
- Automatic syncing
- Contact Pictures support
- Categories support
- Supports Outlook 2003, 2007, 2010, 2013 and 2016 (32 and 64 bit)
- No Support for Outlook Express
- Select Outlook folder to sync
- Sync with multiple GoogleMail accounts
Click here to Patreon-ize the package maintainer.
$ErrorActionPreference = 'Stop'
$packageName = 'go-contact-sync-mod'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = "$toolsDir\SetupGCSM-$ENV:ChocolateyPackageVersion.msi"
$packageArgs = @{
packageName = $packageName
fileType = 'MSI'
file = $url
silentArgs = '/quiet /qn /norestart'
softwareName = 'Go Contact Sync Mod*'
validExitCodes = @(0, 3010, 1641)
}
Install-ChocolateyInstallPackage @packageArgs
Remove-Item $toolsDir\*.msi -Force | Out-Null
==================== GO Contact Sync Mod ====================
GO Contact Sync Mod license is stated as Artistic License, GNU General Public License version 3.0 (GPLv3) on it's project page at https://sourceforge.net/projects/googlesyncmod/
The BPLv3 license can be viewed at https://www.gnu.org/licenses/gpl-3.0.en.html
The pertinent part is:
"Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things."
==================== GO Contact Sync Mod ====================
md5: 804C733EB1DB8BA942171DCCC5CC7638 | sha1: C5515501FA2894C3048AD7BD317CF4ED216E0DB5 | sha256: 51742F2532A91DE2D9FC557BA845929B7DB952556D0193942A337AD43535D71D | sha512: B43C08AB2969CEB8010B6227985F1C5051B82EB4C4DF6C6ACFABD72A7791719FD3CBAFAE2E1F55E4CAEF4D95886136D68B32DE340E1FAA3C280886FC368043BA
==================== GO Contact Sync Mod ====================
bcurran3 downloads and packages the executable for GO Contact Sync Mod from the it's SOURCEFORGE distribution point of https://sourceforge.net/projects/googlesyncmod/files/Releases/
Checksums can be verified by clicking the program version folder and then the (i)/View details next to the filename
==================== GO Contact Sync Mod ====================
Log in or click on link to see number of positives.
- go-contact-sync-mod.3.10.56.nupkg (63df367176a3) - ## / 62
- SetupGCSM-3.10.56.msi (51742f2532a9) - ## / 60
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
GO Contact Sync Mod 3.11.15 | 34 | Thursday, January 21, 2021 | Approved |
GO Contact Sync Mod 3.11.14 | 23 | Thursday, January 21, 2021 | Approved |
GO Contact Sync Mod 3.11.13 | 38 | Sunday, January 17, 2021 | Approved |
GO Contact Sync Mod 3.11.12 | 66 | Monday, December 28, 2020 | Approved |
GO Contact Sync Mod 3.11.11 | 10 | Sunday, December 27, 2020 | Approved |
GO Contact Sync Mod 3.11.10 | 21 | Sunday, December 27, 2020 | Approved |
GO Contact Sync Mod 3.11.9 | 60 | Wednesday, December 2, 2020 | Approved |
GO Contact Sync Mod 3.11.8 | 12 | Tuesday, December 1, 2020 | Approved |
GO Contact Sync Mod 3.11.7 | 11 | Monday, November 30, 2020 | Approved |
GO Contact Sync Mod 3.11.5 | 11 | Saturday, November 28, 2020 | Approved |
GO Contact Sync Mod 3.11.4 | 10 | Thursday, November 19, 2020 | Approved |
GO Contact Sync Mod 3.11.2 | 102 | Tuesday, October 27, 2020 | Approved |
GO Contact Sync Mod 3.11.1 | 58 | Monday, October 19, 2020 | Approved |
GO Contact Sync Mod 3.11.0 | 24 | Sunday, October 18, 2020 | Approved |
GO Contact Sync Mod 3.10.107 | 70 | Thursday, October 8, 2020 | Approved |
GO Contact Sync Mod 3.10.106 | 42 | Tuesday, October 6, 2020 | Approved |
GO Contact Sync Mod 3.10.105 | 59 | Tuesday, September 29, 2020 | Approved |
GO Contact Sync Mod 3.10.103 | 33 | Tuesday, September 29, 2020 | Approved |
GO Contact Sync Mod 3.10.102 | 56 | Wednesday, September 23, 2020 | Approved |
GO Contact Sync Mod 3.10.101 | 33 | Wednesday, September 23, 2020 | Approved |
GO Contact Sync Mod 3.10.100 | 32 | Monday, September 21, 2020 | Approved |
GO Contact Sync Mod 3.10.99 | 40 | Monday, September 21, 2020 | Approved |
GO Contact Sync Mod 3.10.98 | 113 | Tuesday, July 21, 2020 | Approved |
GO Contact Sync Mod 3.10.97 | 72 | Friday, July 10, 2020 | Approved |
GO Contact Sync Mod 3.10.96 | 31 | Thursday, July 9, 2020 | Approved |
GO Contact Sync Mod 3.10.95 | 41 | Wednesday, July 8, 2020 | Approved |
GO Contact Sync Mod 3.10.93 | 31 | Wednesday, July 8, 2020 | Approved |
GO Contact Sync Mod 3.10.92 | 67 | Monday, June 29, 2020 | Approved |
GO Contact Sync Mod 3.10.91 | 44 | Friday, June 26, 2020 | Approved |
GO Contact Sync Mod 3.10.89 | 38 | Thursday, June 25, 2020 | Approved |
GO Contact Sync Mod 3.10.88 | 19 | Thursday, June 25, 2020 | Approved |
GO Contact Sync Mod 3.10.87 | 41 | Wednesday, June 24, 2020 | Approved |
GO Contact Sync Mod 3.10.86 | 64 | Wednesday, June 17, 2020 | Approved |
GO Contact Sync Mod 3.10.85 | 49 | Wednesday, June 17, 2020 | Approved |
GO Contact Sync Mod 3.10.83 | 65 | Thursday, June 11, 2020 | Approved |
GO Contact Sync Mod 3.10.82 | 162 | Friday, April 3, 2020 | Approved |
GO Contact Sync Mod 3.10.81 | 119 | Friday, March 27, 2020 | Approved |
GO Contact Sync Mod 3.10.79 | 101 | Thursday, March 19, 2020 | Approved |
GO Contact Sync Mod 3.10.76 | 202 | Friday, February 7, 2020 | Approved |
GO Contact Sync Mod 3.10.75 | 54 | Tuesday, February 4, 2020 | Approved |
GO Contact Sync Mod 3.10.74 | 76 | Tuesday, February 4, 2020 | Approved |
GO Contact Sync Mod 3.10.73 | 72 | Sunday, February 2, 2020 | Approved |
GO Contact Sync Mod 3.10.72 | 41 | Saturday, February 1, 2020 | Approved |
GO Contact Sync Mod 3.10.71 | 64 | Friday, January 31, 2020 | Approved |
GO Contact Sync Mod 3.10.64 | 71 | Sunday, January 26, 2020 | Approved |
GO Contact Sync Mod 3.10.62 | 58 | Sunday, January 26, 2020 | Approved |
GO Contact Sync Mod 3.10.61 | 96 | Wednesday, December 11, 2019 | Approved |
GO Contact Sync Mod 3.10.60 | 85 | Wednesday, December 4, 2019 | Approved |
GO Contact Sync Mod 3.10.59 | 60 | Monday, December 2, 2019 | Approved |
GO Contact Sync Mod 3.10.56 | 127 | Monday, November 18, 2019 | Approved |
GO Contact Sync Mod 3.10.55 | 72 | Wednesday, November 13, 2019 | Approved |
GO Contact Sync Mod 3.10.54 | 138 | Sunday, October 20, 2019 | Approved |
GO Contact Sync Mod 3.10.53 | 160 | Tuesday, September 10, 2019 | Approved |
GO Contact Sync Mod 3.10.52 | 179 | Sunday, August 11, 2019 | Approved |
GO Contact Sync Mod 3.10.51 | 92 | Tuesday, August 6, 2019 | Approved |
GO Contact Sync Mod 3.10.50 | 187 | Saturday, June 15, 2019 | Approved |
GO Contact Sync Mod 3.10.49 | 98 | Friday, June 14, 2019 | Approved |
GO Contact Sync Mod 3.10.48 | 89 | Thursday, June 6, 2019 | Approved |
GO Contact Sync Mod 3.10.46 | 107 | Tuesday, June 4, 2019 | Approved |
GO Contact Sync Mod 3.10.45 | 95 | Saturday, June 1, 2019 | Approved |
GO Contact Sync Mod 3.10.43 | 79 | Friday, May 31, 2019 | Approved |
GO Contact Sync Mod 3.10.42 | 81 | Thursday, May 30, 2019 | Approved |
GO Contact Sync Mod 3.10.41 | 101 | Wednesday, May 29, 2019 | Approved |
GO Contact Sync Mod 3.10.40 | 93 | Monday, May 27, 2019 | Approved |
GO Contact Sync Mod 3.10.38 | 96 | Tuesday, May 21, 2019 | Approved |
GO Contact Sync Mod 3.10.37 | 95 | Wednesday, April 24, 2019 | Approved |
GO Contact Sync Mod 3.10.36 | 105 | Saturday, April 13, 2019 | Approved |
GO Contact Sync Mod 3.10.34 | 104 | Tuesday, April 9, 2019 | Approved |
GO Contact Sync Mod 3.10.33 | 111 | Monday, April 8, 2019 | Approved |
GO Contact Sync Mod 3.10.32 | 155 | Wednesday, February 13, 2019 | Approved |
GO Contact Sync Mod 3.10.31 | 126 | Wednesday, February 6, 2019 | Approved |
GO Contact Sync Mod 3.10.30 | 106 | Tuesday, February 5, 2019 | Approved |
GO Contact Sync Mod 3.10.29 | 100 | Tuesday, February 5, 2019 | Approved |
GO Contact Sync Mod 3.10.28 | 96 | Monday, February 4, 2019 | Approved |
GO Contact Sync Mod 3.10.26 | 127 | Monday, January 21, 2019 | Approved |
GO Contact Sync Mod 3.10.25 | 110 | Monday, January 21, 2019 | Approved |
GO Contact Sync Mod 3.10.24 | 128 | Saturday, January 19, 2019 | Approved |
GO Contact Sync Mod 3.10.23 | 119 | Tuesday, January 15, 2019 | Approved |
GO Contact Sync Mod 3.10.22 | 148 | Sunday, January 13, 2019 | Approved |
GO Contact Sync Mod 3.10.21 | 151 | Tuesday, December 18, 2018 | Approved |
GO Contact Sync Mod 3.10.19 | 146 | Friday, November 2, 2018 | Approved |
GO Contact Sync Mod 3.10.18 | 127 | Thursday, October 18, 2018 | Approved |
GO Contact Sync Mod 3.10.17 | 148 | Thursday, September 20, 2018 | Approved |
GO Contact Sync Mod 3.10.16 | 137 | Monday, August 20, 2018 | Approved |
GO Contact Sync Mod 3.10.15 | 144 | Thursday, August 16, 2018 | Approved |
GO Contact Sync Mod 3.10.14 | 528 | Wednesday, November 30, 2016 | Approved |
GO Contact Sync Mod 3.10.13 | 310 | Wednesday, November 23, 2016 | Approved |
GO Contact Sync Mod 3.10.9 | 325 | Wednesday, November 2, 2016 | Approved |
GO Contact Sync Mod 3.10.6 | 300 | Sunday, October 9, 2016 | Approved |
GO Contact Sync Mod 3.10.0 | 311 | Thursday, July 14, 2016 | Approved |
GO Contact Sync Mod 3.9.15 | 345 | Saturday, April 2, 2016 | Approved |
-
- dotnet4.5 (≥ 4.5)
Ground Rules:
- This discussion is only about GO Contact Sync Mod and the GO Contact Sync Mod package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or GO Contact Sync Mod, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.