Forum Discussion
Peter Longley
Feb 22, 2018Iron Contributor
Skype Meeting Options in Outlook - Enforce for all users
 Has anybody been able to workout a way to enforce default settings for all users for the Outlook Skype Meeting Options. 
   
 I have been asked to enforce these options for all users and rather than ...
Kevin Prudhoe
Feb 22, 2018Copper Contributor
We did this uses a Powershell logon script.
When you click remember settings it creates a registry key UserSetting (line of XML) at HKCU:\SOFTWARE\Microsoft\Office\16.0\Lync\ConfAddin\*UPN*
So set the settings you want, click remember settings then have a script to do something like:
#Variable for getting UPN
$user = whoami /upn
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Office\16.0\Lync\ConfAddin\$user\ -Name "UserSetting" -Value '**XML from Registry***' -force