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:

36,749

Downloads of v 15.0.4:

322

Last Update:

05 Jul 2024

Package Maintainer(s):

Software Author(s):

  • PlotSoft L.L.C.

Tags:

pdfill pdf fill edit merge split reorder delete encrypt decrypt rotate crop

PDFill

  • 1
  • 2
  • 3

15.0.4 | Updated: 05 Jul 2024

Downloads:

36,749

Downloads of v 15.0.4:

322

Software Author(s):

  • PlotSoft L.L.C.

PDFill 15.0.4

  • 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 PDFill, run the following command from the command line or from PowerShell:

>

To upgrade PDFill, run the following command from the command line or from PowerShell:

>

To uninstall PDFill, 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 pdfill -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 pdfill -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 pdfill
  win_chocolatey:
    name: pdfill
    version: '15.0.4'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'pdfill' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '15.0.4'
end

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


cChocoPackageInstaller pdfill
{
    Name     = "pdfill"
    Version  = "15.0.4"
    Source   = "INTERNAL REPO URL"
}

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


package { 'pdfill':
  ensure   => '15.0.4',
  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 17 Jul 2024.

Description

Looking for an inexpensive alternative to Adobe Acrobat? Please try PDFill! You can use the Free PDF Writer to create free PDF or Image from any printable application. You can use the Free PDF Tools to merge, split, reorder, delete, encrypt, decrypt, rotate, crop and reformat PDF pages, add information/header/footer/watermark, convert image to PDF or PDF to image, scan a Paper to PDF, and more. You can use the FREE PDF Editor to fill the form, type text, comment, create form, and more. Besides, with a fraction of the cost of Adobe Acrobat, PDFill PDF Editor can do more than the Free Adobe Reader.


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation = Join-Path $toolsDir 'PDFill_FREE_PDF_Editor_Basic.msi'

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  fileType      = 'MSI'
  file          = $fileLocation
  softwareName  = 'PDFill*'
  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyInstallPackage @packageArgs
tools\LICENSE.txt
From: https://www.pdfill.com/license.html

PDFill License

PlotSoft L.L.C.

Your Agreement to this License

By using, copying, transmitting, distributing or installing PDFill ("PDFill"),  you agree to all of the terms of this agreement (License).

Please read the license terms below. If you do not agree to all of the terms of this license, you can not use, copy, transmit, distribute, or install PDFill.

Scope of License

A Copy of PDFill FREE PDF Editor Basic can be used on any computer for your purposes (Personal or Commercial) in any time. You can freely distribute any copies of the PDFill FREE PDF Editor Basic with the free evaluation copy of the PDFill PDF Editor Professional. The new PDF created by PDFill FREE PDF Editor Basic contains no watermarks. It is absolutely FREE!

A Copy of PDFill FREE PDF Tools can be used on any computer for your purposes (Personal or Commercial) in any time. You can freely distribute any copies of the PDFill PDF Tools with the free evaluation copy of the PDFill PDF Editor Professional. The new PDF created by PDFill PDF Tools contains no watermarks. It is absolutely FREE!

A Copy of PDFill FREE PDF Writer can be used on any computer for your purposes (Personal or Commercial) in any time. You can freely distribute any copies of the PDFill PDF Writer with the free evaluation copy of the PDFill PDF Editor Professional. The new PDF created by PDFill PDF Writer contains no watermarks. It is absolutely FREE!

A Copy of PDFill FREE Image Writer can be used on any computer for your purposes (Personal or Commercial) in any time. You can freely distribute any copies of the PDFill Image Writer with the free evaluation copy of the PDFill PDF Editor Professional. The new Image created by PDFill Image Writer contains no watermarks. It is absolutely FREE!

A free Evaluation Copy of PDFill PDF Editor (Professional or Enterprise) may be used on one computer or workstation for your evaluation purposes in any time. You can freely distribute any copies of the evaluation version of PDFill PDF Editor (Professional or Enterprise). With PDFill PDF Editor (Professional or Enterprise) Evaluation, the advertising information will be included into the new edited PDF file. If you want to get rid of the advertising, a registration fee is required to get the standard license. See PDFill website http://www.PDFill.com for information about online ordering and quantity discounts.

A Licensed Copy of PDFill PDF Editor (Professional or Enterprise) may either be used by a single person who uses the software personally on one or more computers, or installed on a single workstation used non-simultaneously by multiple people, but not both. This is not a concurrent use license. Each Licensed Copy may be accessed through a network, provided that you have purchased rights to use a Licensed Copy for each workstation that will access PDFill through the network. For instance, if 2 different workstations will access PDFill on the network, you must purchase rights to use 2 Licensed Copies of PDFill, regardless of whether the 2 workstations will access PDFill at different times or concurrently. Also, you cannot use one licensed copy for both your company and your home. You need to buy each for them.

Activation of PDFill PDF Editor (Professional or Enterprise):  The Licensed Software contains technological measures that are designed to prevent its unlicensed or illegal use. For each copy of the user license, you can only activate on two different machines.

If you want to install the software on a different computer, you must first deactivate the license on your current computer by yourself. We offer NO SUPPORT to deactivate your license on our server side.

In purchasing the present license you understand and agree that it is not replaceable in case of accidental loss, including but not limited to major software recovery operations, software crashes, or hardware theft.

PDFill will not resend you the code after you buy PDFill more than 365 days. Please print your registration information and keep it at a safe place.

FREE Upgrade of PDFill PDF Editor (Professional or Enterprise): 

The license for PDFill PDF Editor is lifetime. You have free upgrades as long as you keep the registration code and follow the rule of activation/deactivation.

PDFill 14.0 or earlier registered versions are FREE to upgrade to future Professional Version.

 

Warranty Disclaimers and Liability Limitations

PDFill, and any and all accompanying software, files, data and materials, are distributed and provided AS IS and with no warranties of any kind, whether express or implied.

You acknowledge that good data processing procedure dictates that any program, including PDFill, must be thoroughly tested with non-critical data before you rely on it, and you hereby assume the entire risk of using the program. This disclaimer of warranty constitutes an essential part of this License.

Any liability of PlotSoft will be limited exclusively to refund of purchase price, if any. In addition, in no event shall PlotSoft, or its principals, shareholders, officers, employees, affiliates, contractors, subsidiaries, or parent organizations, be liable for any indirect, incidental, consequential, or punitive damages whatsoever relating to the use of PDFill, or to your relationship with PlotSoft.

In addition, in no event does PlotSoft authorize you to use PDFill in applications or systems where PDFill's failure to perform can reasonably be expected to result in a significant physical injury, or in loss of life. Any such use by you is entirely at your own risk, and you agree to hold PlotSoft harmless from any and all claims or losses relating to such unauthorized use.

 

General

All rights of any kind in PDFill which are not expressly granted in this License are entirely and exclusively reserved to and by PlotSoft. You may not rent, lease, modify, translate, reverse engineer, decompile, disassemble, or create derivative works based on, PDFill. You may not make access to PDFill available to others in connection with a service bureau, application service provider, or similar business.

This License is the complete statement of the agreement between the parties on the subject matter, and merges and supersedes all other or prior understandings, purchase orders, agreements and arrangements. This License shall be governed by the laws of the State of Missouri, without regard to Missouri choice-of-law rules. Exclusive jurisdiction and venue for all matters relating to this License shall be in courts and fora located in the State of Missouri, and you consent to such jurisdiction and venue. There are no third party beneficiaries of any promises, obligations or representations made by PlotSoft herein. Any waiver by PlotSoft of any violation of this License by you shall not constitute or contribute to a waiver of any other or future violation by you of the same provision, or any other provision, of this License.
tools\PDFill_FREE_PDF_Editor_Basic.msi
md5: B97734F27FC6D26CCA65C9A020215874 | sha1: 105918F72B6AAA3B10CCE72511D2F25251241882 | sha256: D1B7B7CB91B7887830234BB3AEB31E7A95393C9A00322105D6D78059CABD734D | sha512: 5C6EED14FBF9B5D0D1EF0AC0B73283700F0967E98552B8A0ED92D293BB885F4986463182B3B7DE280EE613455D2CF7FE83958485533C7907CCC9CBD4A4A01B45
tools\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software has been downloaded from the listed download
location on <http://www.pdfill.com/download.html>
and can be verified by doing the following:

1. Download the following:

  url: <https://www.plotsoft.com/download/PDFill_FREE_PDF_Editor_Basic.msi>

2.  You can use one of the following methods to obtain the checksum: 
    - Use powershell function 'Get-FileHash'
    - Use Chocolatey utility 'checksum.exe'

3.  Compare to Checksum:

    sha256: D1B7B7CB91B7887830234BB3AEB31E7A95393C9A00322105D6D78059CABD734D

The file 'LICENSE.txt' is obtained from:
  <https://www.pdfill.com/license.html>

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
PDFill 11.0 36427 Wednesday, July 24, 2013 Unknown

This package has no dependencies.

Discussion for the PDFill Package

Ground Rules:

  • This discussion is only about PDFill and the PDFill 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 PDFill, 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