Topic Last Modified: 2013-07-05

If you do not want users to have the ability to record online conferences, use the Set-CsMeetingConfiguration cmdlet and set the value of the AllowConferenceRecording parameter to False ($False):

Copy Code
Set-CsMeetingConfiguration -AllowConferenceRecording $False

To restore the ability to record online conferences, set the value of the AllowConferenceRecording parameter to True ($True):

Copy Code
Set-CsMeetingConfiguration -AllowConferenceRecording $True

See Also