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:

447

Downloads of v 0.2.1:

421

Last Update:

07 Jun 2020

Package Maintainer(s):

Software Author(s):

  • Yves Hoppe

Tags:

empoche task todo

Empoche (Install)

  • 1
  • 2
  • 3

0.2.1 | Updated: 07 Jun 2020

Downloads:

447

Downloads of v 0.2.1:

421

Maintainer(s):

Software Author(s):

  • Yves Hoppe

Tags:

empoche task todo

Empoche (Install) 0.2.1

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Empoche (Install), run the following command from the command line or from PowerShell:

>

To upgrade Empoche (Install), run the following command from the command line or from PowerShell:

>

To uninstall Empoche (Install), 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 empoche -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 empoche -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 empoche
  win_chocolatey:
    name: empoche
    version: '0.2.1'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'empoche' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.2.1'
end

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


cChocoPackageInstaller empoche
{
    Name     = "empoche"
    Version  = "0.2.1"
    Source   = "INTERNAL REPO URL"
}

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


package { 'empoche':
  ensure   => '0.2.1',
  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 by moderator flcdrg on 24 Jun 2020.

Description

Take back control of your time.

Empoche combines automatic time tracking with task management in a complete new way. Discover how you spent time on Linux, which applications you use most and which projects keep you busy.

Features:

  • Application and Productivity tracking
  • Learn where you loose time and keep focused
  • Modern Task and Project Management
  • Team Support and Project Sharing
  • Break down tasks into smaller check-lists
  • Calendar, Upcoming, Kanban..
  • Attachments, Comments, Check-lists
  • Time tracking for Tasks and Projects

Plase Note: Empoche is currently in Open Beta, please report bugs and provide feedback


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName= 'empoche'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation = Join-Path $toolsDir 'Empoche+Setup+0.2.1.exe'

$packageArgs = @{
  packageName   = $packageName
  fileType      = 'exe'
  file         = $fileLocation

  silentArgs    = "/S"
  validExitCodes= @(0)
}

Install-ChocolateyInstallPackage @packageArgs
tools\Empoche+Setup+0.2.1.exe
md5: 64C8C84599BFB85D7479FBAA1FCF60B7 | sha1: 38275B7F72AC021F0D87276900A8A55EACC87C8E | sha256: B3300A5E03CE059520195ED5BC9B282A614648F7B90438523C13E9A722DBF507 | sha512: C90D262FBCA18DCD40F37772B51D7E26076ED18EC7625C0FC91DE32B83095E6037DFD221D2ECE6B49EFC3D5033BC77AD7F2C1EFAC9F345F82FF564C25F65D6C4
tools\LICENSE.txt
### Empoche EULA and Terms of Service

Effective Date: April 2nd, 2020

By using our Software and Service you are agreeing to these Terms of Service ("Terms") and certify you are over the age of 13. If you are using the servie on behalf of an organization or entity, then you are agreeing on these terms on behalf of your organizations. You and Your may refer to your organization in this case. Please read the terms before using our service.

#### Privacy Protection
We take your privacy serious and do implement various security measures to protect you and your data. As european company we follow the GDPR closely and make sure not saving more data than needed. You can review the [privacy policy](/privacy-policy) here.

#### Changes of Terms
We may change these terms with additional terms any time. We will notify you through the application or by email on any of these changes. They don't apply retroactively and will become active after thirty days after posted here. You should discontinue your use of our Service if you don not agree with the modified terms.

#### Using Empoche
You must follow any policies within the service. We may suspend or terminate our Service to you any time if you are violating the terms or any policies. You don't gain any ownership of intellectual property by using our software or service. You may not use any copyrighted content in our services unless you obtain permission from the content owners or are otherwise permitted by law. The terms do not grant you the right to use any branding or logos used. We use certain logos, trademarks that are not our property.

You may not use Empoche for the following (non-complete) things:

* Using the service for any illegal activities
* Uploading any content to the service in violation of any applicable law (intellectual property..)
* Accessing or tampering the server systems
* Abusing or excessively submitting requests

#### Software
Empoche may update automatically on your device once a new version or feature becomes available. Empoche grans you a personal, worldwide, non-assignable and non-exclusive license to use the software as part of the service.

Empoche is free of charge, offering a premium subscription (per User / per Team). Each license is bound to a user account, not to a installation.

You may:

* Install and use Empoche Software on multiple computers and clients.
* Distribute the Empoche Software Installer and binaries for free with reference to empoche.com

You may not:

* Modify
* Sell
* Lease

any part of the service or included software. Empoche accounts are bound to a single person and are not allowed to sell.
Nor may you reverse engineer or attempt to extract the software of the source code of the software, unless local laws prohibit those restrictions or you have our written permission.

#### API
You may access Empoche via the [Application Program Interface](https://api.empoche.com) (API). By using the API you are automatically bound by the terms.

#### Your Content
In Empoche you upload, download and store content, including but not limited to, texts, graphics, videos etc. You retain ownership of any intellectual property rights that you hold in that content. When you upload content you give Empoche and it's service partners a worldwide license to host, store, upload and download this content for the purpose of providing the service to you. We reserve the right to remove or refuse to distribute any content through the service including your content.

#### Modify and Terminating of our service
We may add or remove functionalities or features. We may also supspend or stop our service with at least thirty (30) days notice prior. You can choose to stop using our service at will. We may also stop providing the Service to you, or add or create new limitations to our service at any time.

#### Premium Subscriptions
You may support our service by purchasing a premium subscription, which automatically renews at the end of your billing period. You can upgrade from the free service to premium at any time. When a free trial is offered or during beta, you will have access to all Premium features. After the trial or eta version, if you choose not to upgrade, you will be limited to the free service. All prices shown include all applicable taxes. 

Within thirty days of your payment you can request a full refund by contacting us. For premium purchased over an app store (like the Apple Store), please contact the app store support team to get a refund.

#### Warranty
Empoche and any related documentation and service is provided "as is" without warranty of any kind, either expressed or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular puprose, or noninfringment. We take no liability for general, special or incidental or consequential damages.

Your use of Empoche are all at your sole risk. The service is provided on an "as" is basis. We don't warrant that the Empoche will be uninterrupted and error free. Any damage to your computer or devices or any data loss is at your solely responsibility.

#### Copyright Notice
Copyright (C) 2019-2020 Yves Hoppe. All rights reserved.

Any rights not expressed herein are reserved.
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
<Include details of how to verify checksum contents>
<If software vendor, explain that here - checksum verification instructions are optional>
I am the software vendor.

Sha256 Checksum: b3300a5e03ce059520195ed5bc9b282a614648f7b90438523c13e9a722dbf507

https://empoche.com/download


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

This package has no dependencies.

Discussion for the Empoche (Install) Package

Ground Rules:

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