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,023

Downloads of v 1.1.25:

51

Last Update:

28 Dec 2020

Package Maintainer(s):

Software Author(s):

  • Antony Male

Tags:

synctrayzor syncthing synchronization admin

SyncTrayzor

Downloads:

79,023

Downloads of v 1.1.25:

51

Maintainer(s):

Software Author(s):

  • Antony Male

SyncTrayzor

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Exemption:

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
WARNING

This package was rejected on 06 Mar 2021. The reviewer TheCakeIsNaOH has listed the following reason(s):

canton7 (maintainer) on 28 Dec 2020 14:37:43 +00:00:

User 'canton7' (maintainer) submitted package.

chocolatey-ops (reviewer) on 28 Dec 2020 15:10:35 +00:00:

synctrayzor has failed automated validation.

Requirements

Requirements represent the minimum quality of a package that is acceptable. When a package version has failed requirements, the package version requires fixing and/or response by the maintainer. Provided a Requirement has flagged correctly, it must be fixed before the package version can be approved. The exact same version should be uploaded during moderation review.

  • Binary files (.exe, .msi, .zip, etc) have been included without including a LICENSE.txt file. This file is required when including binaries More...
  • Binary files (.exe, .msi, .zip) have been included without including a VERIFICATION.txt file. This file is required when including binaries More...
Notes

Notes typically flag things for both you and the reviewer to go over. Sometimes this is the use of things that may or may not be necessary given the constraints of what you are trying to do and/or are harder for automation to flag for other reasons. Items found in Notes might be Requirements depending on the context. A package version can be approved without addressing Note comments.

  • The package maintainer field (owners) matches the software author field (authors) in the nuspec. The reviewer will ensure that the package maintainer is also the software author. More...
  • Binary files (.exe, .msi, .zip) have been included. The reviewer will ensure the maintainers have distribution rights. More...
  • The package takes a dependency on Chocolatey. The reviewer will ensure the package uses a specific Chocolatey feature that requires a minimum version. More...

TheCakeIsNaOH (reviewer) on 06 Mar 2021 20:58:48 +00:00:

Rejecting as the silent install is broken in version 1.1.25, use version 1.1.28 instead.
Status Change - Changed status of package from 'submitted' to 'rejected'.

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
  • Can watch your folders for changes, so you don't have to poll them frequently:
    • Syncthing on its own has to poll your folders, in order to see if any files have changed.
    • SyncTrayzor will watch your folders for changes, and alert Syncthing the second anything changes.
    • This means you can increase the polling interval in Syncthing, avoiding the resource usage of high-frequency polling, but still have any changes propagated straight away.
    • Folder watching respects the ignores configured in Syncthing.
  • Has a tool to help you resolve file conflicts
  • Contains translations for many languages

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors
$toolsDir              = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageName= 'SyncTrayzor'
$file       = (Join-Path $toolsDir 'SyncTrayzorSetup-x86.exe')
$file64     = (Join-Path $toolsDir 'SyncTrayzorSetup-x64.exe')
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$fileType   = 'exe'
$validExitCodes = @(0)

Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $file $file64 -validExitCodes $validExitCodes

Remove-Item -Force -ea 0 $file, $file64
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName = 'SyncTrayzor'
$softwareName = 'SyncTrayzor*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
$installerType = 'exe' 
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)

$uninstalled = $false
$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\*'

[array]$key = Get-ItemProperty -Path @($machine_key6432,$machine_key, $local_key) `
                        -ErrorAction SilentlyContinue `
         | ? { $_.DisplayName -like "$softwareName" }

if ($key.Count -eq 1) {
  $key | % { 
    $file = "$($_.UninstallString)"
    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}
tools\SyncTrayzorSetup-x64.exe
md5: 65C7C107D3F194AC3A295CE59DF39801 | sha1: 09E13AE50EC434B52CA2D3BDD317D1E12ED9CA57 | sha256: A5984D184DBEC8D1CF262EDEA95D0C26D05FF60009C532D3A65F23261D5DB965 | sha512: 963DB8CB573378810D444E70751029B89587B1698EEB234CEA3741BD595831F9935BAE526676AC13BEAD5843154D1840EF301377736C13C74B8D26854A87957D
tools\SyncTrayzorSetup-x86.exe
md5: 97C1EEEA654738DA668FFB198001E734 | sha1: 30CD69C85C8E09CBB41259F153F7CB2A210DC8A7 | sha256: FB657082A33782FD5B960CE3214E782EF9607A61D4CFE7643E64990D3BA1068A | sha512: F0A5A0512B0DFCF5868A7813B0C005A41EE2CD73C7186A28C9C5AEAC37E61B19347B445307CD1497EA13056C5685B28FA467D557961EBD60335784A4F3C6B027

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 8515 Sunday, March 21, 2021 Approved
SyncTrayzor 1.1.28 1824 Saturday, March 6, 2021 Approved
SyncTrayzor 1.1.24 14099 Saturday, July 27, 2019 Approved
SyncTrayzor 1.1.23 4951 Sunday, April 7, 2019 Approved
SyncTrayzor 1.1.22 4290 Friday, October 5, 2018 Approved
SyncTrayzor 1.1.21 4707 Monday, March 5, 2018 Approved
SyncTrayzor 1.1.20 826 Wednesday, February 28, 2018 Approved
SyncTrayzor 1.1.18 3235 Monday, September 4, 2017 Approved
SyncTrayzor 1.1.17 414 Monday, September 4, 2017 Approved
SyncTrayzor 1.1.16 1860 Saturday, May 20, 2017 Approved
SyncTrayzor 1.1.15 1113 Friday, March 31, 2017 Approved
SyncTrayzor 1.1.14 990 Friday, February 17, 2017 Approved
SyncTrayzor 1.1.13 1335 Sunday, November 6, 2016 Approved
SyncTrayzor 1.1.12 900 Friday, July 22, 2016 Approved
SyncTrayzor 1.1.11 450 Friday, July 8, 2016 Approved
SyncTrayzor 1.1.10 430 Thursday, May 19, 2016 Approved
SyncTrayzor 1.1.9 353 Tuesday, May 3, 2016 Approved
SyncTrayzor 1.1.8 580 Friday, March 18, 2016 Approved
SyncTrayzor 1.1.7 540 Monday, February 8, 2016 Approved
SyncTrayzor 1.1.6 424 Tuesday, February 2, 2016 Approved
SyncTrayzor 1.1.5 417 Wednesday, January 27, 2016 Approved
SyncTrayzor 1.1.4 477 Tuesday, January 26, 2016 Approved
SyncTrayzor 1.1.3 400 Tuesday, January 26, 2016 Approved
SyncTrayzor 1.1.2 409 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