I would use a post install script. You can easily turn a registry file into a PowerShell script using this awesome tool: https://reg2ps.azurewebsites.net/
New-Item -Path 'HKLM:\SOFTWARE\' -Name 'PDF24' New-Item -Path 'HKCU:\SOFTWARE\' -Name 'PDF24' Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoEmbeddedBrowser' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoFax' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoMail' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoOnlineConverter' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoOnlinePdfTools' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoPDF24MailInterface' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoReader' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'Fart' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoTrayIcon' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\PDF24' -Name 'NoUpdateCheckBtns' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoEmbeddedBrowser' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoFax' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoMail' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoOnlineConverter' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoOnlinePdfTools' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoPDF24MailInterface' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoReader' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'Fart' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoTrayIcon' -type 'dword' 1 Set-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\PDF24' -Name 'NoUpdateCheckBtns' -type 'dword' 1 return $true