Is there a way to disable saving of conversations via group policy? I would like to disable these settings without having to each client.
Save IM Conversations in my email Conversation History folder
Save call logs in my email Conversation History folder
These are both checked by default
Setting the policy in Lync sets if for all users that policy is assigned to. There are two parameters that can be set here, one for IM conversations and one for call logs. The following command disables the automatic saving of both options:
Set-CsClientPolicy –Identity Test –EnableIMAutoArchiving $false –EnableCallLogAutoArchivin
Note that we are setting a specific policy which is already granted to our users. You could easily set these parameters on the Global Client Policy to apply to everyone.