Downloads:
421
Downloads of v 3.2.0.1:
47
Last Update:
25 May 2024
Package Maintainer(s):
Software Author(s):
- Andrew Trvarrow
- Derek Wilson
Tags:
podcastutilities podcast dowload sync- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
PodcastUtilities Install
- 1
- 2
- 3
3.2.0.1 | Updated: 25 May 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
421
Downloads of v 3.2.0.1:
47
Maintainer(s):
Software Author(s):
- Andrew Trvarrow
- Derek Wilson
PodcastUtilities Install 3.2.0.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Andrew Trvarrow, Derek Wilson. The inclusion of Andrew Trvarrow, Derek Wilson trademark(s), if any, upon this webpage is solely to identify Andrew Trvarrow, Derek Wilson goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install PodcastUtilities Install, run the following command from the command line or from PowerShell:
To upgrade PodcastUtilities Install, run the following command from the command line or from PowerShell:
To uninstall PodcastUtilities Install, 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 podcastutilities --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 podcastutilities -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 podcastutilities -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 podcastutilities
win_chocolatey:
name: podcastutilities
version: '3.2.0.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'podcastutilities' do
action :install
source 'INTERNAL REPO URL'
version '3.2.0.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller podcastutilities
{
Name = "podcastutilities"
Version = "3.2.0.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'podcastutilities':
ensure => '3.2.0.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.
This package was approved by moderator Windos on 28 May 2024.
There are many sophisticated media management programs available for organising digital media however the key differences that Podcast Utilities has are
Portable Podcast Utilities is a “portable” application, in that it does not need to be installed and can be run from any drive type, local network or removable flash drive
Configurable Almost any synchronisation solution can be configured, for example copy 3 of this podcast, all of these podcasts, in this order, and leave a certain amount of space on the device. The number of concurrent downloads can easily be configured.
Lightweight The application does not use large amounts of memory in a system tray icon all the time its not being used, it only uses system resources when its being run.
Support for UMS and MTP PodcastUtilities supports USB Mass Storage (UMS) devices, where the device appears as a drive letter in Explorer like a flash drive, as well as MTP devices where the device appears as a portable device, for example many phones.
Scriptable Podcast Utilities lends itself to being run as a scheduled task or from a script. The API is “headless” and can easily be called and used from other applications
Open Source The source is open and available
Free There is no cost to using Podcast Utilities for any use.
No need for an iTunes account Podcasts promoted on iTunes can be downloaded however there is no need to have an iTunes account.
This version runs on Windows only as it needs the .NET Framework, if you want a cross platform (Windows,Linux,Mac) version then try the podcastutilities-core package. You probably dont need to install both.
$ErrorActionPreference = 'Stop';
$PackageName = $env:ChocolateyPackageName;
$StartMenu = "$([System.Environment]::GetFolderPath('CommonStartMenu'))\Programs"
$Desktop = [System.Environment]::GetFolderPath("Desktop");
$PrgmData = [System.Environment]::GetFolderPath("CommonApplicationData");
# we only need to do the things that the auto uninstall doesnt do
Remove-Item "$Desktop\PodcastUtilities.lnk" -ErrorAction SilentlyContinue -Force | Out-Null
Remove-Item "$StartMenu\PodcastUtilities.lnk" -ErrorAction SilentlyContinue -Force | Out-Null
FreeBSD License
PodcastUtilities
Copyright (c) 2010 - 2013, Andrew Trevarrow and Derek Wilson
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provide
d that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
the following disclaimer in the documentationand/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
md5: F25D6C59026E4E9EF7DDD4C8944FB60A | sha1: 073851DFB3A4CD2FD3FEA4349B6639226570D875 | sha256: 258797F465494F939901297CE8EA80F327F558A42AFEDA62CB60FA7D18CB3B2D | sha512: 8CC14F2FFEDEC964B9E389C719276B44B460119265A15740682E0C3EB9AFFC268B5B6F9B6E9616BB3F6BF5649FC2502D5BDC36E3F212320F260676686E59AB55
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The software is installed from the archive embedded in this nuppkg: podcastutilities3.2.0.1.zip
It can also be obtained from <https://github.com/derekwilson/PodcastUtilities/tree/master/ChocolateyInstaller/podcastutilities/files>
You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
get-filehash podcastutilities3.2.0.1.zip
- Use chocolatey utility 'checksum.exe'
C:\ProgramData\chocolatey\tools\checksum.exe .\podcastutilities3.2.0.1.zip -t=sha256
Compare the SHA256 Checksum Value: 258797F465494F939901297CE8EA80F327F558A42AFEDA62CB60FA7D18CB3B2D
File 'LICENSE.txt' is obtained from <https://github.com/derekwilson/PodcastUtilities/blob/master/LICENSE.txt>
Log in or click on link to see number of positives.
- Interop.PortableDeviceApiLib.dll (46484f438030) - ## / 66
- Interop.PortableDeviceTypesLib.dll (fdc53aeba162) - ## / 70
- LinFu.Core.dll (12d3397d65e5) - ## / 69
- podcastutilities.3.2.0.1.nupkg (c35afa66d0b9) - ## / 67
- podcastutilities3.2.0.1.zip (258797f46549) - ## / 67
- DownloadPodcasts.exe (3779cfa89fb7) - ## / 74
- GeneratePlaylist.exe (cfbdbecffed7) - ## / 73
- PerfmonCountersInstaller.exe (6047a67ef6ea) - ## / 74
- PodcastUtilities.Common.dll (3dfdc809f786) - ## / 70
- PodcastUtilities.Integration.Tests.exe (8f1fc1d6cc0a) - ## / 73
- PodcastUtilities.Ioc.dll (a50e7b079c87) - ## / 74
- PodcastUtilities.PortableDevices.dll (be8574f42e01) - ## / 74
- PurgePodcasts.exe (a882026c69a5) - ## / 73
- SyncPodcasts.exe (21932b8c6c63) - ## / 74
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 |
---|---|---|---|---|
PodcastUtilities Install 3.2.0.1 | 47 | Saturday, May 25, 2024 | Approved | |
PodcastUtilities Install 3.1.0.0 | 127 | Thursday, February 9, 2023 | Approved | |
PodcastUtilities Install 3.0.2.7 | 70 | Wednesday, October 12, 2022 | Approved | |
PodcastUtilities Install 3.0.0.2 | 177 | Thursday, November 11, 2021 | Approved |
2010-2013 Andrew Trvarrow and Derek Wilson
This package has no dependencies.
Ground Rules:
- This discussion is only about PodcastUtilities Install and the PodcastUtilities 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 PodcastUtilities 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.