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:

8,752

Downloads of v 2.0.1.34:

371

Last Update:

10 Dec 2016

Package Maintainer(s):

Software Author(s):

  • Kenneth Skovhede and Rene Stach

Tags:

duplicati cloud backup admin

Duplicati (Portable)

This is not the latest version of Duplicati (Portable) available.

  • 1
  • 2
  • 3

2.0.1.34 | Updated: 10 Dec 2016

Downloads:

8,752

Downloads of v 2.0.1.34:

371

Maintainer(s):

Software Author(s):

  • Kenneth Skovhede and Rene Stach

Duplicati (Portable) 2.0.1.34

This is not the latest version of Duplicati (Portable) available.

  • 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:

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
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Duplicati (Portable), run the following command from the command line or from PowerShell:

>

To upgrade Duplicati (Portable), run the following command from the command line or from PowerShell:

>

To uninstall Duplicati (Portable), 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 duplicati.portable -y --source="'INTERNAL REPO URL'" --version="'2.0.1.34'" [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 duplicati.portable -y --source="'INTERNAL REPO URL'" --version="'2.0.1.34'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install duplicati.portable
  win_chocolatey:
    name: duplicati.portable
    version: '2.0.1.34'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'duplicati.portable' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.0.1.34'
end

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


cChocoPackageInstaller duplicati.portable
{
    Name     = "duplicati.portable"
    Version  = "2.0.1.34"
    Source   = "INTERNAL REPO URL"
}

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


package { 'duplicati.portable':
  ensure   => '2.0.1.34',
  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.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved by moderator flcdrg on 19 Dec 2016.

Description

Screenshot of Duplicati

Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers. It works with:

  • Amazon S3
  • OneDrive
  • Google Drive (Google Docs)
  • Rackspace Cloud Files
  • HubiC
  • Backblaze (B2)
  • Amazon Cloud Drive (AmzCD)
  • Swift / OpenStack
  • WebDAV
  • SSH (SFTP)
  • FTP
  • and more

Duplicati is licensed under LGPL and available for Windows, OSX and Linux (.NET 4.5+ or Mono required).

Features

  • Duplicati uses AES-256 encryption (or GNU Privacy Guard) to secure all data before it is uploaded.
  • Duplicati uploads a full backup initially and stores smaller, incremental updates afterwards to save bandwidth and storage space.
  • A scheduler keeps backups up-to-date automatically.
  • Integrated updater notifies you when a new release is out
  • Encrypted backup files are transferred to targets like FTP, Cloudfiles, WebDAV, SSH (SFTP), Amazon S3 and others.
  • Duplicati allows backups of folders, document types like e.g. documents or images, or custom filter rules.
  • Duplicati is available as application with an easy-to-use user interface and as command line tool.
  • Duplicati can make proper backups of opened or locked files using the Volume Snapshot Service (VSS) under Windows or the Logical Volume Manager (LVM) under Linux. This allows Duplicati to back up the Microsoft Outlook PST file while Outlook is running.
  • Filters, deletion rules, transfer and bandwidth options, etc

Many Backends

Duplicati works with standard protocols like FTP, SSH, WebDAV as well as popular services like Microsoft OneDrive, Amazon Cloud Drive " S3, Google Drive, box.com, Mega, hubiC and many others.

Features

Backup files and folders with strong AES-256 encryption. Save space with incremental backups and data deduplication. Run backups on any machine through the web-based interface or via command line interface. Duplicati has a built-in scheduler and auto-updater.

Free software

Duplicati is free software and open source. You can use Duplicati for free even for commercial purposes. Source code is licensed under LGPL. Duplicati runs under Windows, Linux, MacOS. It requires .NET 4.5 or Mono.

Strong encryption

Duplicati uses strong AES-256 encryption to protect your privacy. You can also use GPG to encrypt your backup.

Built for online

Duplicati was designed for online backups from scratch. It is not only data efficient but also handles network issues nicely. E.g. interrupted backups can be resumed and Duplicati tests the content of backups regularly. That way broken backups on corrupt storage systems can be detected before it’s too late.

Web-based user interface

Duplicati is configured by a web interface that runs in any browser (even mobile) and can be accessed - if you like - from anywhere. This also allows to run Duplicati on headless machines like a NAS (network attached storage).

PACKAGING NOTE: v2.0 is still considered "experimental" (beta) and in active development.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'
$packageName   = 'duplicati.portable'
$toolsDir      = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url           = 'https://github.com/duplicati/duplicati/releases/download/v2.0.1.34-2.0.1.34_canary_2016-12-05/duplicati-2.0.1.34_canary_2016-12-05.zip' 
$checksum      = '185DCE55B4BD9A9EC13C5F83B28FFF5472C044576BBCAAB056745C70D8B19CB6'
$validExitCodes= @(0)


$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'ZIP' 
  url           = $url
  checksum      = $checksum
  checksumType  = 'sha256'
}

Install-ChocolateyZipPackage @packageArgs 

  

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
Duplicati (Portable) 2.0.7.101-pre20240308 13 Saturday, March 9, 2024 Exempted
Duplicati (Portable) 2.0.7.100-pre20231227 19 Thursday, December 28, 2023 Exempted
Duplicati (Portable) 2.0.7.2-pre20230525 33 Saturday, May 27, 2023 Exempted
Duplicati (Portable) 2.0.6.106-pre20230503 33 Thursday, May 4, 2023 Exempted
Duplicati (Portable) 2.0.6.105-pre20230409 32 Tuesday, April 11, 2023 Exempted
Duplicati (Portable) 2.0.6.104-pre20220615 76 Thursday, June 16, 2022 Exempted
Duplicati (Portable) 2.0.6.103-pre20220613 53 Tuesday, June 14, 2022 Exempted
Duplicati (Portable) 2.0.6.102-pre20220406 74 Thursday, April 7, 2022 Exempted
Duplicati (Portable) 2.0.6.101-pre20220313 64 Thursday, March 17, 2022 Exempted
Duplicati (Portable) 2.0.6.100-pre20211207 125 Tuesday, February 1, 2022 Exempted
Duplicati (Portable) 2.0.6.100-pre20210811 93 Thursday, August 12, 2021 Exempted
Duplicati (Portable) 2.0.6.3-pre20210617 85 Friday, June 18, 2021 Exempted
Duplicati (Portable) 2.0.6.2-pre20210529 84 Sunday, May 30, 2021 Exempted
Duplicati (Portable) 2.0.6.1-pre20210503 73 Monday, May 3, 2021 Exempted
Duplicati (Portable) 2.0.6.0-pre20210409 86 Saturday, April 10, 2021 Exempted
Duplicati (Portable) 2.0.5.114-pre20210310 91 Thursday, March 11, 2021 Exempted
Duplicati (Portable) 2.0.5.113-pre20210307 83 Monday, March 8, 2021 Exempted
Duplicati (Portable) 2.0.5.112-pre20210120 91 Thursday, January 21, 2021 Exempted
Duplicati (Portable) 2.0.5.111-pre20200926 127 Saturday, September 26, 2020 Exempted
Duplicati (Portable) 2.0.5.110-pre20200810 123 Monday, September 14, 2020 Exempted
Duplicati (Portable) 2.0.2.1 537 Monday, August 7, 2017 Approved
Duplicati (Portable) 2.0.1.72 415 Sunday, July 9, 2017 Approved
Duplicati (Portable) 2.0.1.55 431 Sunday, April 16, 2017 Approved
Duplicati (Portable) 2.0.1.53 386 Sunday, March 26, 2017 Approved
Duplicati (Portable) 2.0.1.47 443 Friday, February 17, 2017 Approved
Duplicati (Portable) 2.0.1.42 442 Tuesday, January 17, 2017 Approved
Duplicati (Portable) 2.0.1.38 394 Tuesday, January 3, 2017 Approved
Duplicati (Portable) 2.0.1.34 371 Saturday, December 10, 2016 Approved
Duplicati (Portable) 2.0.1.33 415 Monday, November 28, 2016 Approved
Duplicati (Portable) 2.0.1.30 457 Sunday, November 13, 2016 Approved
Duplicati (Portable) 1.3.4.20150408 659 Wednesday, April 8, 2015 Approved
duplicati.portable 1.3.4.20131214 645 Saturday, December 14, 2013 Approved
duplicati.portable 1.3.4 410 Saturday, December 14, 2013 Approved
Discussion for the Duplicati (Portable) Package

Ground Rules:

  • This discussion is only about Duplicati (Portable) and the Duplicati (Portable) 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 Duplicati (Portable), 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