PDFsam is a Java-based application — it requires a JRE (bundled since v4).
No HKCR file associations are registered; PDFsam does not claim .pdf as a default handler.
Analytics can be disabled before first launch by pre-setting analytics = 0 in the registry.
# Disable analytics and update check silently before deployment$path="HKCU:\SOFTWARE\pdfsam"if(-not(Test-Path$path)){New-Item-Path$path-Force|Out-Null}Set-ItemProperty-Path$path-Name"analytics"-Value0-TypeDWordSet-ItemProperty-Path$path-Name"checkForUpdates"-Value0-TypeDWord
🗑️ Cleanup
# Remove PDFsam user preferencesRemove-Item-Path"HKCU:\SOFTWARE\pdfsam"-Recurse-ErrorActionSilentlyContinue