Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

79,364

Downloads of v 1.1.29:

25,668

Last Update:

07 Aug 2021

Package Maintainer(s):

Software Author(s):

  • Antony Male

Tags:

synctrayzor syncthing synchronization admin

SyncTrayzor

  • 1
  • 2
  • 3

1.1.29 | Updated: 07 Aug 2021

Downloads:

79,364

Downloads of v 1.1.29:

25,668

Maintainer(s):

Software Author(s):

  • Antony Male

SyncTrayzor 1.1.29

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install SyncTrayzor, run the following command from the command line or from PowerShell:

>

To upgrade SyncTrayzor, run the following command from the command line or from PowerShell:

>

To uninstall SyncTrayzor, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade synctrayzor -y --source="'INTERNAL REPO 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 synctrayzor -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install synctrayzor
  win_chocolatey:
    name: synctrayzor
    version: '1.1.29'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'synctrayzor' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.1.29'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller synctrayzor
{
    Name     = "synctrayzor"
    Version  = "1.1.29"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'synctrayzor':
  ensure   => '1.1.29',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 07 Aug 2021.

Description

SyncTrayzor is a little tray utility for Syncthing on Windows.
It hosts and wraps Syncthing, making it behave more like a native Windows application and less like a command-line utility with a web browser interface.

Features include:

  • Has a built-in web browser, so you don't need to fire up an external browser.
  • Optionally starts on login, so you don't need to set up Syncthing as a service.
  • Has drop-box style file download / progress window
  • Tray icon indicates when synchronization is occurring.
  • Alerts you when:
    • You have file conflicts
    • One of your folders is out of sync
    • Folders finish syncing
    • Devices connect / disconnect
  • Has a tool to help you resolve file conflicts
  • Contains translations for many languages

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

# Copied from https://github.com/chocolatey-community/chocolatey-coreteampackages/blob/a2371345f182da74589897055e3b3703deb0cce3/extensions/chocolatey-core.extension/extensions/Get-UninstallRegistryKey.ps1
function Get-UninstallRegistryKeySilent {
    param(
        [Parameter(Mandatory=$true, ValueFromPipeline=$true)]
        [ValidateNotNullOrEmpty()]
        [string] $SoftwareName,
        [parameter(ValueFromRemainingArguments = $true)]
        [Object[]] $IgnoredArguments
    )
    Write-Debug "Running 'Get-UninstallRegistryKey' for `'$env:ChocolateyPackageName`' with SoftwareName:`'$SoftwareName`'";

    $ErrorActionPreference = 'Stop'
    $local_key       = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
    $machine_key     = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*'
    $machine_key6432 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*'

    Write-Verbose "Retrieving all uninstall registry keys"
    [array]$keys = Get-ChildItem -Path @($machine_key6432, $machine_key, $local_key) -ea 0
    Write-Debug "Registry uninstall keys on system: $($keys.Count)"

    Write-Debug "Error handling check: `'Get-ItemProperty`' fails if a registry key is encoded incorrectly."
    [int]$maxAttempts = $keys.Count
    for ([int]$attempt = 1; $attempt -le $maxAttempts; $attempt++)
    {
        $success = $false

        $keyPaths = $keys | Select-Object -ExpandProperty PSPath
        try {
            [array]$foundKey = Get-ItemProperty -Path $keyPaths -ea 0 | ? { $_.DisplayName -like $SoftwareName }
            $success = $true
        } catch {
            Write-Debug "Found bad key."
            foreach ($key in $keys){ try{ Get-ItemProperty $key.PsPath > $null } catch { $badKey = $key.PsPath }}
            Write-Verbose "Skipping bad key: $badKey"
            [array]$keys = $keys | ? { $badKey -NotContains $_.PsPath }
        }

        if ($success) { break; }
        if ($attempt -eq 10) {
            Write-Warning "Found more than 10 bad registry keys. Run command again with `'--verbose --debug`' for more info."
            Write-Debug "Each key searched should correspond to an installed program. It is very unlikely to have more than a few programs with incorrectly encoded keys, if any at all. This may be indicative of one or more corrupted registry branches."
        }
    }

    Write-Debug "Found $($foundKey.Count) uninstall registry key(s) with SoftwareName:`'$SoftwareName`'";
    return $foundKey
}

$toolsDir              = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$file                  = (Join-Path $toolsDir 'SyncTrayzorSetup-x86.exe')
$file64                = (Join-Path $toolsDir 'SyncTrayzorSetup-x64.exe')

$packageArgs = @{
    packageName   = 'SyncTrayzor'
    file          = $file
    file64        = $file64
    silentArgs    = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /SkipDotNetInstall'
    fileType      = 'exe'
    validExitCodes = @(0)
}

# Version 1.1.28 had a bug which installed x86 on x64 machines. Forcefully transitioning someone from
# x86 to x64 is risky, as it potentially loses their config, Syncthing version, etc.
# Therefore if they've got the x86 version and not the x64 version, upgrade using the x86 version to
# avoid breaking them.
if ((Get-OSArchitectureWidth -compare 64) -and ($env:chocolateyForceX86 -ne $true) -and (Get-UninstallRegistryKeySilent -SoftwareName 'SyncTrayzor (x86)*')) {
    if (Get-UninstallRegistryKeySilent -SoftwareName 'SyncTrayzor (x64)*') {
        Write-Host -ForegroundColor green "Both the 32-bit and 64-bit versions of SyncTrayzor are installed. Upgrading the 64-bit version."
    } else {
        Write-Host -ForegroundColor green "You have the 32-bit version of SyncTrayzor installed, so upgrading this. If you intended to install the 64-bit version, please uninstall the 32-bit version first."
        # null out the 64 bit file parameter, so only the 32 bit file is available to install
        $packageArgs['file64'] = $null
    }
}

Install-ChocolateyInstallPackage @packageArgs

Remove-Item -Force -ea 0 $file, $file64
tools\LICENSE.txt
The MIT License (MIT)

Copyright (c) 2015-2021 Antony Male

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

tools\SyncTrayzorSetup-x64.exe
md5: D260593C13246DD1D5C4F5762A2AF9A4 | sha1: E6D77BB61D58E0792B83C62A115A51A04D472D6A | sha256: BD9631C18B6B0BEDE73FDB80481784D2E21820E9DBB1D3D7F1B98B5D89745209 | sha512: A770247A51A911D64D1967F26C23122CD443BBFD355DBCCBADE5D9297B163F337176F41994FA15C58DA332D42402C5741B378B7AAF8B55B8BA81C08A5B938D94
tools\SyncTrayzorSetup-x86.exe
md5: 7ED809C4B6272E9DD4052FFD79377E4E | sha1: 8B691C62D1A89FC933E6FD1E6562213E985629ED | sha256: 7D0B4D3A8F4E9791DF963EBAE8B1B789158878E9AAD2F5B76A876C10661D7F46 | sha512: EDCA431D9A01696AFFB2760DA65CDD904CF3007DD7717D362ABA5AB327A9622A595972783C128B04CFBA32F507A42C0ED138CE813BC9ECE2C43ADF8DC713AE35
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the developer of SyncTrayzor. 
Binaries are identical to the setup binaries available at the GitHub release page:
https://github.com/canton7/SyncTrayzor/releases

Log in or click on link to see number of positives.

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.

Add to Builder Version Downloads Last Updated Status
SyncTrayzor 1.1.28.20200321 8516 Sunday, March 21, 2021 Approved
SyncTrayzor 1.1.28 1826 Saturday, March 6, 2021 Approved
SyncTrayzor 1.1.24 14101 Saturday, July 27, 2019 Approved
SyncTrayzor 1.1.23 4953 Sunday, April 7, 2019 Approved
SyncTrayzor 1.1.22 4293 Friday, October 5, 2018 Approved
SyncTrayzor 1.1.21 4710 Monday, March 5, 2018 Approved
SyncTrayzor 1.1.20 829 Wednesday, February 28, 2018 Approved
SyncTrayzor 1.1.18 3237 Monday, September 4, 2017 Approved
SyncTrayzor 1.1.17 416 Monday, September 4, 2017 Approved
SyncTrayzor 1.1.16 1860 Saturday, May 20, 2017 Approved
SyncTrayzor 1.1.15 1117 Friday, March 31, 2017 Approved
SyncTrayzor 1.1.14 994 Friday, February 17, 2017 Approved
SyncTrayzor 1.1.13 1337 Sunday, November 6, 2016 Approved
SyncTrayzor 1.1.12 902 Friday, July 22, 2016 Approved
SyncTrayzor 1.1.11 450 Friday, July 8, 2016 Approved
SyncTrayzor 1.1.10 431 Thursday, May 19, 2016 Approved
SyncTrayzor 1.1.9 356 Tuesday, May 3, 2016 Approved
SyncTrayzor 1.1.8 583 Friday, March 18, 2016 Approved
SyncTrayzor 1.1.7 542 Monday, February 8, 2016 Approved
SyncTrayzor 1.1.6 425 Tuesday, February 2, 2016 Approved
SyncTrayzor 1.1.5 418 Wednesday, January 27, 2016 Approved
SyncTrayzor 1.1.4 477 Tuesday, January 26, 2016 Approved
SyncTrayzor 1.1.3 405 Tuesday, January 26, 2016 Approved
SyncTrayzor 1.1.2 414 Sunday, January 24, 2016 Approved

Discussion for the SyncTrayzor Package

Ground Rules:

  • This discussion is only about SyncTrayzor and the SyncTrayzor 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 SyncTrayzor, 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.
comments powered by Disqus