Home
Printer
Misc
Adobe
Vinfen Links Shortcut
Reinstall O365
Cx360 Shortcut
Remove Adobe Outlook Addin:
if (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Write-Warning "You do not have Administrator rights to run this script!`nPlease re-run this script as an Administrator." Break } $registryPath = "HKCU:\Software\Microsoft\Office\Outlook\Addins\AdobeAcroOutlook.SendAsLink" if (!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force | Out-Null } $LoadBehavior = 2 Set-ItemProperty -Path $registryPath -Name LoadBehavior -Value $LoadBehavior -Type DWord