# Create Zivver settings path New-Item -Path "HKCU:\Software\Zivver\OfficePlugin" -name "Settings" -Force # Let users be logged in to Zivver automatically New-ItemProperty "HKCU:\Software\Zivver\OfficePlugin\Settings" -name "AutoEnableSsoAccounts" -Value "1" -PropertyType DWORD New-ItemProperty "HKCU:\Software\Zivver\OfficePlugin\Settings" -name "TryAutoReloginSso" -Value "1" -PropertyType DWORD # Let users be logged in to Zivver for 30 days New-ItemProperty "HKCU:\Software\Zivver\OfficePlugin\Settings" -name "ShortRefreshTokenSSOTTLHours" -Value "720" -PropertyType DWORD # Use email verification when guest verification is missing New-ItemProperty "HKCU:\Software\Zivver\OfficePlugin\Settings" -name "UseEmailVerificationAsDefault" -Value "1" -PropertyType DWORD # Do not show builtin tutorials New-ItemProperty "HKCU:\Software\Zivver\OfficePlugin\Settings" -name "DoNotShowTutorials" -Value "1" -PropertyType DWORD # Prevent Outlook from disabling Zivver Office plugin New-Item -Path "HKCU:\SOFTWARE\Microsoft\Office\16.0\Outlook\Resiliency" -name "DoNotDisableAddinList" -Force New-ItemProperty "HKCU:\SOFTWARE\Microsoft\Office\16.0\Outlook\Resiliency\DoNotDisableAddinList" -name "ZivverOfficePlugin.AddinModule" -Value "1" -PropertyType DWORD # LoadBehavior equals 3 to force Zivver Office plugin to load at startup New-Item -Path "HKCU:\Software\Microsoft\Office\Outlook\Addins" -name "ZivverOfficePlugin.AddinModule" -Force New-ItemProperty -Path "HKCU:\Software\Microsoft\Office\Outlook\Addins\ZivverOfficePlugin.AddinModule" -Name "LoadBehavior" -Value "3" -PropertyType DWORD