Adobe Reader DC - with registry settings for all users. Silent Install.

<#
.SYNOPSIS
This script performs the installation or uninstallation of an application(s).
.DESCRIPTION
The script is provided as a template to perform an install or uninstall of an application(s).
The script either performs an “Install” deployment type or an “Uninstall” deployment type.
The install deployment type is broken down into 3 main sections/phases: Pre-Install, Install, and Post-Install.
The script dot-sources the AppDeployToolkitMain.ps1 script which contains the logic and functions required to install or uninstall an application.
.PARAMETER DeploymentType
The type of deployment to perform. Default is: Install.
.PARAMETER DeployMode
Specifies whether the installation should be run in Interactive, Silent, or NonInteractive mode. Default is: Interactive. Options: Interactive = Shows dialogs, Silent = No dialogs, NonInteractive = Very silent, i.e. no blocking apps. NonInteractive mode is automatically set if it is detected that the process is not user interactive.
.PARAMETER AllowRebootPassThru
Allows the 3010 return code (requires restart) to be passed back to the parent process (e.g. SCCM) if detected from an installation. If 3010 is passed back to SCCM, a reboot prompt will be triggered.
.PARAMETER TerminalServerMode
Changes to “user install mode” and back to “user execute mode” for installing/uninstalling applications for Remote Destkop Session Hosts/Citrix servers.
.PARAMETER DisableLogging
Disables logging to file for the script. Default is: $false.
.EXAMPLE
Deploy-Application.ps1
.EXAMPLE
Deploy-Application.ps1 -DeployMode ‘Silent’
.EXAMPLE
Deploy-Application.ps1 -AllowRebootPassThru -AllowDefer
.EXAMPLE
Deploy-Application.ps1 -DeploymentType Uninstall
.NOTES
Toolkit Exit Code Ranges:
60000 - 68999: Reserved for built-in exit codes in Deploy-Application.ps1, Deploy-Application.exe, and AppDeployToolkitMain.ps1
69000 - 69999: Recommended for user customized exit codes in Deploy-Application.ps1
70000 - 79999: Recommended for user customized exit codes in AppDeployToolkitExtensions.ps1
.LINK
http://psappdeploytoolkit.codeplex.com
#>
[CmdletBinding()]
Param (
[Parameter(Mandatory=$false)]
[ValidateSet(‘Install’,‘Uninstall’)]
[string]$DeploymentType = ‘Install’,
[Parameter(Mandatory=$false)]
[ValidateSet(‘Interactive’,‘Silent’,‘NonInteractive’)]
[string]$DeployMode = ‘Interactive’,
[Parameter(Mandatory=$false)]
[switch]$AllowRebootPassThru = $false,
[Parameter(Mandatory=$false)]
[switch]$TerminalServerMode = $false,
[Parameter(Mandatory=$false)]
[switch]$DisableLogging = $false
)

Try {
## Set the script execution policy for this process
Try { Set-ExecutionPolicy -ExecutionPolicy ‘ByPass’ -Scope ‘Process’ -Force -ErrorAction ‘Stop’ } Catch {}

##*===============================================
##* VARIABLE DECLARATION
##*===============================================
## Variables: Application
[string]$appVendor = 'Adobe'
[string]$appName = 'Reader'
[string]$appVersion = '15.006.30033'
[string]$appArch = ''
[string]$appLang = 'DK'
[string]$appRevision = '01'
[string]$appScriptVersion = '1.0.0'
[string]$appScriptDate = '04/02/2015'
[string]$appScriptAuthor = 'XXX'
##*===============================================

##* Do not modify section below
#region DoNotModify

## Variables: Exit Code
[int32]$mainExitCode = 0

## Variables: Script
[string]$deployAppScriptFriendlyName = 'Deploy Application'
[version]$deployAppScriptVersion = [version]'3.6.1'
[string]$deployAppScriptDate = '03/26/2015'
[hashtable]$deployAppScriptParameters = $psBoundParameters

## Variables: Environment
[string]$scriptDirectory = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent

## Dot source the required App Deploy Toolkit Functions
Try {
	[string]$moduleAppDeployToolkitMain = "$scriptDirectory\AppDeployToolkit\AppDeployToolkitMain.ps1"
	If (-not (Test-Path -Path $moduleAppDeployToolkitMain -PathType Leaf)) { Throw "Module does not exist at the specified location [$moduleAppDeployToolkitMain]." }
	If ($DisableLogging) { . $moduleAppDeployToolkitMain -DisableLogging } Else { . $moduleAppDeployToolkitMain }
}
Catch {
	[int32]$mainExitCode = 60008
	Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: <code>n$($_.Exception.Message)</code>n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
	Exit $mainExitCode
}

#endregion
##* Do not modify section above
##*===============================================
##* END VARIABLE DECLARATION
##*===============================================
	
If ($deploymentType -ine 'Uninstall') {
	##*===============================================
	##* PRE-INSTALLATION
	##*===============================================
	[string]$installPhase = 'Pre-Installation'
	
	## Show Welcome Message, close Internet Explorer if required, allow up to 3 deferrals, verify there is enough disk space to complete the install, and persist the prompt
	Show-InstallationWelcome -CloseApps 'iexplore' -AllowDefer -DeferTimes 3 -CheckDiskSpace -PersistPrompt
	
	## Show Progress Message (with the default message)
	Show-InstallationProgress
	
	## &lt;Perform Pre-Installation tasks here&gt;
	
	
	##*===============================================
	##* INSTALLATION 
	##*===============================================
	[string]$installPhase = 'Installation'
	
	## Handle Zero-Config MSI Installations
	If ($useDefaultMsi) { Execute-MSI -Action 'Install' -Path $defaultMsiFile }
	
	## &lt;Perform Installation tasks here&gt;
     Execute-MSI -Action Install -Path 'AcroRead.msi' -Parameters "/QN" -Transform 'AcroRead.mst'
	
	 
	##*===============================================
	##* POST-INSTALLATION
	##*===============================================
	[string]$installPhase = 'Post-Installation'
	
	## &lt;Perform Post-Installation tasks here&gt;

Set-RegistryKey -Key ‘HKLM\SOFTWARE\XXXX’ -Name ‘Adobe Reader DC’ -Value ‘15.006.30033’ -Type String

[scriptblock]$HKCURegistrySettings = {
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Access’ -Name ‘bOverridePageLayout’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Access’ -Name ‘bOverrideZoom’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Access’ -Name ‘iPageLayout’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Access’ -Name ‘iZoomScale’ -Value 65536 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Access’ -Name ‘iZoomType’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Accessibility’ -Name ‘iWizardRun’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Accessibility’ -Name ‘bCheckReadMode’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Accessibility’ -Name ‘iReadingMode’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp’ -Name ‘sLocale’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp’ -Name ‘iVersion’ -Value 984832 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a0’ -Value “EPDFApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a1’ -Value “CPDFApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a2’ -Value “EditPDFRdrApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a3’ -Value “CommentApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a4’ -Value “FillSignApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a5’ -Value “CollectSignaturesApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cFavorites’ -Name ‘a6’ -Value “SendAppFull” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘tDescription’ -Value “Konvertér PDF-filer til Word, Excel, PowerPoint og mere” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘aID’ -Value “EPDFAppFull” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘tPath’ -Value “EPDF_Full.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c0’ -Name ‘tTitle’ -Value “Eksportér PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘tDescription’ -Value “Opret en PDF fra et hvilket som helst format” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘aID’ -Value “CPDFAppFull” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘tPath’ -Value “CPDF_Full.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c1’ -Name ‘tTitle’ -Value “Opret PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘tDescription’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘aID’ -Value “ToolsCenter” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘tPath’ -Value “AppCenter_R.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c10’ -Name ‘tTitle’ -Value “Værktøjer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘tDescription’ -Value “Opret en PDF fra et hvilket som helst format” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘aID’ -Value “CPDFApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘bInline’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘tPath’ -Value “CPDF_RHP.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c11’ -Name ‘tTitle’ -Value “Opret PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘tDescription’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘aID’ -Value “EditPDFRdrApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘bInline’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘tPath’ -Value “Edit_R_RHP.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c12’ -Name ‘tTitle’ -Value “Rediger PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘tDescription’ -Value “Konvertér PDF-filer til Word, Excel, PowerPoint og mere” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘aID’ -Value “EPDFApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘bInline’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘tPath’ -Value “EPDF_RHP.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c13’ -Name ‘tTitle’ -Value “Eksportér PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘tDescription’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘aID’ -Value “AVHome” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘tPath’ -Value “Home.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c14’ -Name ‘tTitle’ -Value “Startside” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘tDescription’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘aID’ -Value “Viewer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘tPath’ -Value “Viewer.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c15’ -Name ‘tTitle’ -Value “Fremviser” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘tDescription’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘aID’ -Value “EditPDFRdrAppFull” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘tPath’ -Value “Edit_R_Full.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c2’ -Name ‘tTitle’ -Value “Rediger PDF” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘tDescription’ -Value “Tilføj kommentarer med markeringer, huskesedler og markeringsværktøjer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘aID’ -Value “CommentApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘tPath’ -Value “Comments.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c3’ -Name ‘tTitle’ -Value “Kommenter” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘tDescription’ -Value “Udfyld og underskriv dokumenter og formularer elektronisk” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘aID’ -Value “FillSignApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘tPath’ -Value “FillSign.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c4’ -Name ‘tTitle’ -Value “Udfyld og underskriv” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘tDescription’ -Value “Få signaturer fra andre, og spor resultater” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘aID’ -Value “CollectSignaturesApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘tPath’ -Value “CollectSignatures.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c5’ -Name ‘tTitle’ -Value “Send til underskrivelse” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘tDescription’ -Value “Send dokumenter, spor visninger og downloads” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘aID’ -Value “SendAppFull” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘tPath’ -Value “TrackedSend.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘bShowLabels’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c6’ -Name ‘tTitle’ -Value “Send og spor” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘tDescription’ -Value ‘Tilføj stempler som “godkendt” eller “udkast”’ -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘aID’ -Value “StampApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘tPath’ -Value “Stamp.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘bShowLabels’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c7’ -Name ‘tTitle’ -Value “Stempel” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘tDescription’ -Value “Underskriv eller certificer dokumenter digitalt, og valider autenticiteten” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘aID’ -Value “CertificatesApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘tPath’ -Value “Certificates_R.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘bShowLabels’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c8’ -Name ‘tTitle’ -Value “Certifikater” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘tDescription’ -Value “Mål objekters afstand, område og omkreds” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘aID’ -Value “MeasureApp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘bInline’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘tLocation’ -Value “install” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘tPath’ -Value “Measure.aapp” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘bShowLabels’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AcroApp\cRegistered\c9’ -Name ‘tTitle’ -Value “Måling” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AdobeViewer’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots’ -Name ‘bStampsPaletteInvisible’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cAnnot’ -Name ‘tauthor’ -Value “domainnca” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cHighlight_003aHighlightNote’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cHighlight_003aHighlightNote\cstrokeColor’ -Name ‘t0’ -Value “RGB” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cHighlight_003aHighlightNote\cstrokeColor’ -Name ‘d1’ -Value “1.000000” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cHighlight_003aHighlightNote\cstrokeColor’ -Name ‘d2’ -Value “1.000000” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Annots\cAnnots\cHighlight_003aHighlightNote\cstrokeColor’ -Name ‘d3’ -Value “0.000000” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AutoSaveDocs’ -Name ‘bAutoSaveDocsEnabled’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1’-SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\caccounts’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\caccounts\cdef’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\cconnectors’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\cconnectors\cda0dk’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add\c0’ -Name ‘ssection_key’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add\c0’ -Name ‘tsection_label’ -Value “Værktøjer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add\c0\csection_order’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add\c0\csection_order\c0’ -Name ‘balwaysAppear’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_add\c0\csection_order\c0’ -Name ‘sname’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_left_rail’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_left_rail\c0’ -Name ‘balwaysAppear’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConnector\cv1\corder\cda0dk\corder_for_left_rail\c0’ -Name ‘sname’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConversionFromPDF’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConversionFromPDF\cSettings’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConversionToPDF’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVConversionToPDF\cSettings’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVEntitlement’ -Name ‘bAppInitialized’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVEntitlement’ -Name ‘iEntitlementLevel’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral’ -Name ‘bisFirstLaunch’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral’ -Name ‘bPinHUD’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral’ -Name ‘bShowQuickTools’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral’ -Name ‘bShowRecentlyUsedTools’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a0’ -Value “Save” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a1’ -Value “Print” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a2’ -Value “Share” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a3’ -Value “PrevPage” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a4’ -Value “NextPage” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a5’ -Value “GoToPage” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a6’ -Value “ZoomViewOut” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a7’ -Value “ZoomViewIn” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a8’ -Value “ZoomTo” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a9’ -Value “ContinuousFitWidth” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a10’ -Value “OnePageFitPage” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a11’ -Value “Find” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a12’ -Value “ReadingMode” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a13’ -Value “UnpinHUDFromTopBar” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a14’ -Value “Redo” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a15’ -Value “Copy” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a16’ -Value “Paste” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a17’ -Value “SelectGraphics” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a18’ -Value “FindSearch” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a19’ -Value “RotateCW” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a20’ -Value “RotateCCW” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a28’ -Value “Undo” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a29’ -Value “Redo” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a30’ -Value “Copy” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a31’ -Value “Paste” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a32’ -Value “SelectGraphics” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a33’ -Value “FindSearch” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a34’ -Value “RotateCW” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cCommonToolsDesktop’ -Name ‘a35’ -Value “RotateCCW” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cDockables’ -Name ‘bExternalTabs’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cDockables’ -Name ‘bInternalTabs’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cTaskPanes’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cTaskPanes\cBasicCommentPane’ -Name ‘bAllowMultipleExpandedPanels’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVGeneral\cToolbars\cCommenting\cStamp’ -Name ‘bInternalExpanded’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\AVTracker’ -Name ‘bLoadOnStart’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab’ -Name ‘aServer’ -Value “NONE” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘bAlwaysUseServer’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘bAlwaysUseServerFD’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘bDefault’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘bDefaultFD’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘tDistMethod’ -Value “UPLOAD” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘tUI’ -Value “Adobes onlinetjenester (anbefales)” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter’ -Name ‘tURL’ -Value ‘urn://ns.adobe.com/Collaboration/SharedReview/Acrobat.com’ -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cDocumentCenter\cSettings’ -Name ‘tcSetting’ -Value “https://api.share.acrobat.com” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution’ -Name ‘bAlwaysUseServerFD’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution’ -Name ‘bDefaultFD’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution’ -Name ‘tDistMethod’ -Value “EMAIL” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution’ -Name ‘tUI’ -Value “Indsaml svar manuelt i min e-mail-indbakke” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution’ -Name ‘tURL’ -Value ‘urn://ns.adobe.com/Collaboration/Forms/Email’ -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cEmailDistribution\cSettings’ -Name ‘tcSetting’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInitiationWizardFirstLaunch’ -Name ‘bIsFirstLaunchER’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInitiationWizardFirstLaunch’ -Name ‘bIsFirstLaunchFD’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInitiationWizardFirstLaunch’ -Name ‘bIsFirstLaunchSF’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInitiationWizardFirstLaunch’ -Name ‘bIsFirstLaunchSR’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInitiationWizardFirstLaunch’ -Name ‘bIsFirstLaunchUF’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer’ -Name ‘bAlwaysUseServerFD’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer’ -Name ‘bDefaultFD’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer’ -Name ‘tDistMethod’ -Value “InternalServer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer’ -Name ‘tUI’ -Value “Indsaml automatisk svar på min egen interne server” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer’ -Name ‘tURL’ -Value “urn://ns.adobe.com/Collaboration/Forms/InternalServer” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cInternalServer\cSettings’ -Name ‘tcSetting’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cServerSettings’ -Name ‘tCONFIG’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cServerSettings’ -Name ‘tDAVFDF’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cServerSettings’ -Name ‘tFSFDF’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Collab\cServerSettings’ -Name ‘tNONE’ -Value “” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\ExitSection’ -Name ‘bLastExitNormal’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\FlashDebug’ -Name ‘bAutomationEnabled’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\FormsPrefs’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\FormsPrefs\cRequiredFieldHLColor’ -Name ‘xData’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\FormsPrefs\cRuntimeBGIdleColor’ -Name ‘xData’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Installer’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Installer\Migrated’ -Name ‘{AC76BA86-7AD7-1030-7B44-AC0F074E4100}’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\IPM’ -Name ‘bIPM2’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\IPM’ -Name ‘bpairID’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\IPMContextAPI’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\IPMContextAPI\cIPMContextAPICache’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Language’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Language\current’ -Name ‘(Default)’ -Value ‘locale\da_dk\rdlang32.dan’ -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Language\next’-Name ‘(Default)’ -Value ‘locale\da_dk\rdlang32.dan’ -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Language\UseMUI’ -Name ‘bUseMUI’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Originals’ -Name ‘bDisplayedSplash’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Originals’ -Name ‘sProofingSpace’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews’ -Name ‘iRememberView’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1’ -Name ‘xID’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1’ -Name ‘iTime’ -Value 1431956512 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘iAVDocViewBottomSplitterPos’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘iAVDocViewLeftSplitterPos’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘bAVDocViewTabsShowing’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘bShowingPageGaps’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘bbringToFront’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ioverViewMode’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ioverViewPos’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageRotation’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘xpageViewBead’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewLayoutMode’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewMaxVisPageNum’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewMinVisPageNum’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewPageNum’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘bpageViewStartThread’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewThreadIndex’ -Value ‘0xFFFFFFFF’ -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewX’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewY’ -Value ‘0xFFFFFFD6’ -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘dpageViewZoom’ -Value “1.001114” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘ipageViewZoomType’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘xwindowFrame’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef’ -Name ‘bwindowMaximized’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cBottomView’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cLeftView’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cocgStates’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘bShowingPageGaps’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageRotation’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘xpageViewBead’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewLayoutMode’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewPageNum’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘bpageViewStartThread’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewThreadIndex’ -Value ‘0xFFFFFFFF’ -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewX’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewY’ -Value ‘0xFFFFFFD6’ -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘dpageViewZoom’ -Value “1.001114” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView’ -Name ‘ipageViewZoomType’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\RememberedViews\cNoCategoryFiles\c1\cViewDef\cTopLeftView\cocgStates’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iLastPortraitBottom’ -Value 1152 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iLastPortraitLeft’ -Value 152 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iLastPortraitRight’ -Value 1173 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iLastPortraitTop’ -Value 52 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘bMaximizeNextDocument’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iNullDocBottom’ -Value 1152 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iNullDocLeft’ -Value 152 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘bNullDocMaximized’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iNullDocRight’ -Value 1173 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\SDI’ -Name ‘iNullDocTop’ -Value 52 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c290FA7E61053E8763C6055E6333A99EFB83ECACB’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c290FA7E61053E8763C6055E6333A99EFB83ECACB\cAdobe_OCSPRevChecker’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c290FA7E61053E8763C6055E6333A99EFB83ECACB\cAdobe_OCSPRevChecker\cAuthorizedResponder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c290FA7E61053E8763C6055E6333A99EFB83ECACB\cAdobe_OCSPRevChecker\cAuthorizedResponder\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0’ -Name ‘iEnd’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0’ -Name ‘iStart’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0\cValue’ -Name ‘s0’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0\cValue’ -Name ‘s1’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1’ -Name ‘iEnd’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1’ -Name ‘iStart’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s0’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s1’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s2’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s3’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s4’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s5’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s6’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s7’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s8’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s9’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s10’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s11’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cAuthorizedResponder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cAuthorizedResponder\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSendNonce’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSendNonce\c0’ -Name ‘iValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSignCertOID’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSignCertOID\c0’ -Name ‘sValue’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSignRequest’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cSignRequest\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cURLToConsult’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E310000\cAdobe_OCSPRevChecker\cURLToConsult\c0’ -Name ‘iValue’ -Value 3 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0’ -Name ‘iEnd’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0’ -Name ‘iStart’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0\cValue’ -Name ‘s0’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c0\cValue’ -Name ‘s1’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1’ -Name ‘iEnd’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1’ -Name ‘iStart’ -Value 2 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s0’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s1’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s2’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s3’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s4’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s5’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s6’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s7’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s8’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s9’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s10’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_ChainBuilder\cAcceptablePolicyOIDs\c1\cValue’ -Name ‘s11’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cAuthorizedResponder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cAuthorizedResponder\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSendNonce’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSendNonce\c0’ -Name ‘iValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSignCertOID’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSignCertOID\c0’ -Name ‘sValue’ -Value (byte[]) -Type binary -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSignRequest’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cSignRequest\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cURLToConsult’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E322E3834302E3131343032312E312E312E310000\cAdobe_OCSPRevChecker\cURLToConsult\c0’ -Name ‘iValue’ -Value 3 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_ChainBuilder’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_ChainBuilder\cAllowCAToIssueAC’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_ChainBuilder\cAllowCAToIssueAC\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_ChainBuilder\cCheckCABasicConstraints’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_ChainBuilder\cCheckCABasicConstraints\c0’ -Name ‘bValue’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_CRLRevChecker’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_CRLRevChecker\cRequireAKI’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_CRLRevChecker\cRequireAKI\c0’ -Name ‘bValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_OCSPRevChecker’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_OCSPRevChecker\cAllowOCSPNoCheck’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_OCSPRevChecker\cAllowOCSPNoCheck\c0’ -Name ‘bValue’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_OCSPRevChecker\cRequireOCSPCertHash’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_OCSPRevChecker\cRequireOCSPCertHash\c0’ -Name ‘bValue’ -Value 0 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_Validation’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_Validation\cValidityModel’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cASPKI\cASPKI\cCustomCertPrefs\c312E332E33362E382E312E310000\cAdobe_Validation\cValidityModel\c0’ -Name ‘iValue’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cHandlers’ -Name ‘aPrivKey’ -Value “Adobe.PPKLite” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Security\cPPKHandler’ -Name ‘bCustomPrefsCreated’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Selection’ -Name ‘aDefaultSelect’ -Value “Select” -Type string -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Selection’ -Name ‘bShowKeyboardSelectionCursor’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Toast’ -Name ‘iClientToastNumber’ -Value 12 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\UsageMeasurement’ -Name ‘bHeadlightsNoticeShown’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\UsageMeasurement’ -Name ‘bInstalledCleanupCheckDone’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Workflows’ -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Workflows\cMobileLink’ -Name ‘uGTLastCheckTime’ -Value 1431955145 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Workflows\cMobileLink’ -Name ‘uMachineGT’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
Set-RegistryKey -Key ‘HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\2015\Workflows\cServices’ -Name ‘bEpdfRhpExpanded’ -Value 1 -Type dword -SID $UserProfile.SID -ContinueOnError $true
}

    Invoke-HKCURegistrySettingsForAllUsers -RegistrySettings $HKCURegistrySettings
	
	## Display a message at the end of the install
	If (-not $useDefaultMsi) { Show-InstallationPrompt -Message 'You can customize text to appear at the end of an install or remove it completely for unattended installations.' -ButtonRightText 'OK' -Icon Information -NoWait }
}
ElseIf ($deploymentType -ieq 'Uninstall')
{
	##*===============================================
	##* PRE-UNINSTALLATION
	##*===============================================
	[string]$installPhase = 'Pre-Uninstallation'
	
	## Show Welcome Message, close Internet Explorer with a 60 second countdown before automatically closing
	Show-InstallationWelcome -CloseApps 'iexplore' -CloseAppsCountdown 60
	
	## Show Progress Message (with the default message)
	Show-InstallationProgress
	
	## &lt;Perform Pre-Uninstallation tasks here&gt;
	
	
	##*===============================================
	##* UNINSTALLATION
	##*===============================================
	[string]$installPhase = 'Uninstallation'
	
	## Handle Zero-Config MSI Uninstallations
	If ($useDefaultMsi) { Execute-MSI -Action 'Uninstall' -Path $defaultMsiFile }
	
	# &lt;Perform Uninstallation tasks here&gt;
	 Execute-MSI -Action Uninstall -Path '{AC76BA86-7AD7-FFFF-7B44-AE0F06755100}'
	
	##*===============================================
	##* POST-UNINSTALLATION
	##*===============================================
	[string]$installPhase = 'Post-Uninstallation'
	
	## &lt;Perform Post-Uninstallation tasks here&gt;

Set-RegistryKey -Key ‘HKLM\SOFTWARE\XXX’ -Name ‘Adobe Reader DC’ -Value ‘Removed’ -Type String

}

##*===============================================
##* END SCRIPT BODY
##*===============================================

## Call the Exit-Script function to perform final cleanup operations
Exit-Script -ExitCode $mainExitCode

}
Catch {
[int32]$mainExitCode = 60001
[string]$mainErrorMessage = “$(Resolve-Error)”
Write-Log -Message $mainErrorMessage -Severity 3 -Source $deployAppScriptFriendlyName
Show-DialogBox -Text $mainErrorMessage -Icon ‘Stop’
Exit-Script -ExitCode $mainExitCode
}

I have a powershell module (.dll) made in c#, with cmdlets to convert .reg files to PSAPPDEPLOYTool cmdlets.
if anybody would like to try it, here you are :slight_smile:

https://drive.google.com/open?id=0B9d-QGIouqlwfkRKTTZSUmdwUXpkSlBuUFB5Vm5Dc1QzSEctN2dxWnR1RXFMejNmcWgyRWM

I’ve sent you a request on GDrive :slight_smile:

wow, I think I would just use the adobe customization wizard and build a MST :slight_smile:

@Alan

Agreed!

The issue is that i get a lot of different reg files for different software from another deparments, i need to make deployment for it, that’s why i get ide with conventer, it helps to save the time. Adobe in this case is only en example. :wink: