Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 502 Bytes

File metadata and controls

28 lines (23 loc) · 502 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Beta.Teams

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

Set-MgBetaGroupTeam -GroupId $groupId -BodyParameter $params