Downloads:
3,052
Downloads of v 0.0.5253:
36
Last Update:
22 Feb 2025
Package Maintainer(s):
Software Author(s):
- The Infinite Kind
Tags:
moneydance personal finance manager trial- Software Specific:
- Software Site
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Moneydance
- 1
- 2
- 3
0.0.5253 | Updated: 22 Feb 2025
- Software Specific:
- Software Site
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
3,052
Downloads of v 0.0.5253:
36
Maintainer(s):
Software Author(s):
- The Infinite Kind
Moneydance 0.0.5253
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The Infinite Kind. The inclusion of The Infinite Kind trademark(s), if any, upon this webpage is solely to identify The Infinite Kind goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Moneydance, run the following command from the command line or from PowerShell:
To upgrade Moneydance, run the following command from the command line or from PowerShell:
To uninstall Moneydance, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download moneydance --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade moneydance -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 moneydance -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 moneydance
win_chocolatey:
name: moneydance
version: '0.0.5253'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'moneydance' do
action :install
source 'INTERNAL REPO URL'
version '0.0.5253'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller moneydance
{
Name = "moneydance"
Version = "0.0.5253"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'moneydance':
ensure => '0.0.5253',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 22 Feb 2025.
Notes
It's a free trial of Moneydance, which is fully functional but limited to entering up to 100 manually entered transactions.
To purchase this product: https://infinitekind.com/purchase
Features
Online Banking
Moneydance can automatically download transactions and send payments online from hundreds of financial institutions. It learns how to automatically categorize and clean up downloaded transactions.
Summary
This is an overview of your finances. The information shown includes account balances, upcoming and overdue transactions and reminders, and exchange rate information. Clicking on an account or choosing an account from the drop-down account list will take you to the register for that account, where you can enter transactions or reconcile the account against a statement. Clicking on a transaction reminder will display a window where you can automatically record the transaction.
Graphs & Reports
Use the graphing tool to generate visual reports of your income and expenses. Set the graph type, the date range, and any specific settings for the type of graph you desire. Pop-up balloons display more information about the data being graphed as you move the mouse pointer over different regions of the screen. Graphs can also be printed or saved to PNG image files.
Account Registers
The account register is used to enter, edit, and delete transactions in an account. It is visually similar to a paper checkbook register, but the calculation of balances and sorting of transactions is all done automatically. The payee auto-complete feature makes it easier to enter and categorize your transactions.
Reminders
You can set up a payment schedule for single or recurring transactions so you'll never miss a payment.
Mobile
When you're on the go, you can use the Moneydance mobile app to enter or edit transactions and view balances. Changes are synced instantly and securely with your desktop. Available for free in the app store for your iPhone, iPad, and iPod touch. Now also available for your Android device free on the Play Store!
Investments
Follow your investments and bring your portfolio into focus with support for stocks, bonds, CDs, mutual funds, and more. View the total value of your investment accounts or the performance of individual stocks and mutual funds over time. Stock splits and cost basis computations are a snap, and current prices can be downloaded automatically.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Moneydance *'
fileType = 'exe'
silentArgs = "-q"
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} 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)"}
}
Log in or click on link to see number of positives.
- moneydance.0.0.5253.nupkg (6843109ccadb) - ## / 69
- Moneydance_windows_amd64.exe (4cbb9d76b1d3) - ## / 69
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 |
---|---|---|---|---|
Moneydance 0.0.5253 | 36 | Saturday, February 22, 2025 | Approved | |
Moneydance 0.0.5219 | 23 | Wednesday, February 12, 2025 | Approved | |
Moneydance 0.0.5172 | 52 | Monday, October 21, 2024 | Approved | |
Moneydance 0.0.5118 | 79 | Friday, April 19, 2024 | Approved | |
Moneydance 0.0.5117 | 44 | Tuesday, April 16, 2024 | Approved | |
Moneydance 0.0.5115 | 31 | Tuesday, April 16, 2024 | Approved | |
Moneydance 0.0.5064 | 82 | Saturday, December 9, 2023 | Approved | |
Moneydance 0.0.5059 | 49 | Saturday, November 25, 2023 | Approved | |
Moneydance 0.0.5006 | 167 | Saturday, April 1, 2023 | Approved | |
Moneydance 0.0.5005 | 44 | Wednesday, March 29, 2023 | Approved | |
Moneydance 0.0.4097 | 84 | Monday, January 30, 2023 | Approved | |
Moneydance 0.0.4091 | 96 | Sunday, August 14, 2022 | Approved | |
Moneydance 0.0.4087 | 85 | Wednesday, June 1, 2022 | Approved | |
Moneydance 0.0.4077 | 80 | Saturday, April 30, 2022 | Approved | |
Moneydance 0.0.4060 | 119 | Saturday, October 30, 2021 | Approved | |
Moneydance 0.0.4058 | 112 | Saturday, October 23, 2021 | Approved | |
Moneydance 0.0.4056 | 105 | Saturday, October 16, 2021 | Approved | |
Moneydance 0.0.4055 | 108 | Tuesday, October 12, 2021 | Approved | |
Moneydance 0.0.4054 | 85 | Tuesday, October 12, 2021 | Approved | |
Moneydance 0.0.3069 | 180 | Friday, May 21, 2021 | Approved | |
Moneydance 0.0.2006 | 184 | Tuesday, October 20, 2020 | Approved | |
Moneydance 0.0.1929 | 148 | Friday, September 25, 2020 | Approved | |
Moneydance 0.0.1928 | 144 | Thursday, September 3, 2020 | Approved | |
Moneydance 0.0.1919 | 143 | Monday, August 10, 2020 | Approved | |
Moneydance 0.0.1918 | 144 | Sunday, August 9, 2020 | Approved | |
Moneydance 0.0.1880 | 413 | Thursday, June 20, 2019 | Approved | |
Moneydance 0.0.1868 | 215 | Tuesday, May 14, 2019 | Approved |
© Copyright The Infinite Kind 2019
This package has no dependencies.
Ground Rules:
- This discussion is only about Moneydance and the Moneydance 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 Moneydance, 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.