Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 420 Bytes

File metadata and controls

25 lines (20 loc) · 420 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Teams

$params = @{
	memberSettings = @{
		allowCreateUpdateChannels = $true
	}
	messagingSettings = @{
		allowUserEditMessages = $true
		allowUserDeleteMessages = $true
	}
	funSettings = @{
		allowGiphy = $true
		giphyContentRating = "strict"
	}
}

Update-MgTeam -TeamId $teamId -BodyParameter $params