8.15.2026

Ketarin PDFSam

🚀 Community Guide: Setting Up PDFsam Basic in Ketarin

The ideal setup scraps the version number from the official download site, but pulls the actual file directly from PDFsam's GitHub Repo.
Follow these exact settings to get it running:

Step 1: Create the Version Variable

Ketarin needs to find the latest version number first. We scrape this safely from the official website.
  1. Open the application properties for PDFsam Basic in Ketarin.
  2. Go to the Variables tab and click Add variable.
  3. Configure the variable exactly like this:
    • Variable Name: version
    • Type: Check the radio button for Content from URL (Regular Expression)
    • Contents from URL: https://pdfsam.org/download-pdfsam-basic/
    • Use regular expression: href=".*?pdfsam-basic-([0-9.]+)-windows-x64\.msi" [1]







Step 2: Configure the Download URL

Now that Ketarin knows what {version} means, we use it to build the precise download path on GitHub.
  1. Switch back to the General tab of your application properties.
  2. Copy and paste this exact template into the Download URL text box:
https://github.com/torakiki/pdfsam/releases/download/v{version}/pdfsam-basic-{version}-windows-x64.msi
⚠️ Common Pitfall Warning: Make absolutely sure there is a forward slash / directly after github.com. If you accidentally type github.com{version}, Ketarin will blend the text together into a broken web address (like github.com6.0.5) and throw a "Remote name could not be resolved" error.

Step 3: Optional Silent Installation (For Administrators)

If you want Ketarin to automatically install or update PDFsam quietly in the background after downloading it, you can add a script command.
  1. Go to the Setup tab.
  2. In the Post-download command box, paste the standard Windows Installer silent switches:
    msiexec /i "{file}" /quiet /norestart

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.