Microsoft 365: Novedades en Microsoft Teams–Julio 2021!

A punto de estrenar agosto y toca revisar las principales novedades que hemos tenido en Microsoft Teams durante el mes de julio.

Novedades en Meetings

Busqueda de información en el transcript generado en grabaciones de reuniones de Teams de forma que podamos localizar en que reunión se dijo algo específico.

Bloquear el acceso a reuniones de Teams en curso:

thumbnail image 2 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Traducción automática de slides en PowerPoint Live en reuniones de Teams:

thumbnail image 3 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Configuración de autograbación para reuniones de Teams:

thumbnail image 4 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Pagina de asistentes en la vista de Galería en reuniones de Teams:

thumbnail image 5 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Fondos para reuniones de video corporativos definidos en el Teams Admin Center. Se pueden cargar hasta 50 fondos.

thumbnail image 6 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Telemetría en tiempo real para usuario final en reuniones de Teams de forma que se facilite detectar problemas a nivel de red, al compartir pantalla, al habilitar la cámara, etc

thumbnail image 7 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Contenido relacionado en reuniones de Teams cuando se participa desde un dispositivo móvil.

thumbnail image 8 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Novedades en Calling

Transferencia de llamadas desde dispositivo PC a móvil:

thumbnail image 9 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Novedades en Chat & Colaboración

Más emojis para usar en chats privados y mensajes en canales de Teams:

thumbnail image 14 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Soporte de inmersive reader para la App móvil de Teams.

Traducción en linea de mensajes en canales de Teams para la App Móvil de iOs y Android.

PowerPlatform y Desarrollo Personalizado

Posibilidad de configurar las aplicaciones desarrolladas para hacer uso del Stage de Teams:

thumbnail image 15 of blog post titled 
	
	
	 
	
	
	
				
		
			
				
						
							What’s New in Microsoft Teams | July 2021

Seguridad, Compliance y Privacidad

Soporte de multi-geo en Microsoft Teams para asegurar data residency en Teams.

Protección de Safe Links para Microsoft Teams.

Referencia

What’s New in Microsoft Teams | July 2021

Microsoft 365: Changing Teams meeting settings while the meeting is happening (I)!

Once a Microsoft Teams meeting is already running, as meeting organizers we have still the choice to modify the meeting settings directly in the meeting window. To do that, just clic on the “…” in the meeting actions and ten in “Meeting options”:

image

In the meeting options panel, you will see all the available controls that can be modified while the meeting is happening.

image

Microsoft 365: Habilitar/Verificar el uso de sensitivity labels en todo Microsoft 365!

Para habilitar/verificar el uso de sensitivity labels en todo Microsoft 365 (no solo a nivel de documento, sino también en Teams, SharePoint o Grupos de Microsoft 365) hay que realizar una serie de configuraciones mediante PowerShell:

##########################################################################################################################################
#Script to enable Sensitivity Labels in SharePoint Online, ODFB, Teams and Microsoft 365 Groups at both the document and conainer level
##########################################################################################################################################
#Optional: Uninstall-Module AzureAD 

#First, it's recommended to uninstall Azure AD and Azure AD Preview Modules to be sure we are using the most recent and stable version
Uninstall-Module AzureAD
Uninstall-Module AzureADPreview

#We install first Azure AD Preview Module available here (Choose the most estable version, no the last one): https://www.powershellgallery.com/packages/AzureADPreview/2.0.2.119
Install-Module -Name AzureADPreview -RequiredVersion 2.0.2.119
Import-Module AzureADPreview

################################################################################################################
#Enabiling Sensitivity Labels in Azure AD
################################################################################################################
Connect-AzureAD

#Checking first we have all the required Azure AD policy templates
Get-AzureADDirectorySettingTemplate

#Checking settings enabled in Azure AD
Get-AzureADDirectorySetting

#If settings for Microsoft 365 are not available, we have to create them from the Group.Unified template
$TemplateId = (Get-AzureADDirectorySettingTemplate | where { $_.DisplayName -eq "Group.Unified" }).Id
$Template = Get-AzureADDirectorySettingTemplate | where -Property Id -Value $TemplateId -EQ
$Setting = $Template.CreateDirectorySetting()
$Setting.Values
$Setting["EnableMIPLabels"] = "True"
New-AzureADDirectorySetting -DirectorySetting $Setting

#Following PS sentences are not required If we had to create the settings
$Setting = Get-AzureADDirectorySetting | ? { $_.DisplayName -eq "Group.Unified"}

#Revisión de configuraciones + Habilitar el uso de Sensitivity Labels
$Setting.Values
$Setting["EnableMIPLabels"] = "True"
Set-AzureADDirectorySetting -Id $Setting.Id -DirectorySetting $Setting


################################################################################################################
#Synchronizing the sensitivity labels already in place to Azure AD
################################################################################################################
Import-Module ExchangeOnlineManagement
Connect-IPPSSession -UserPrincipalName AllanD@M365x222184.OnMicrosoft.com
Execute-AzureAdLabelSync


################################################################################################################
#Verifying Sensitivity Labels for SPO and ODFB are enabled
################################################################################################################
$sSPOAdminCenterURL="https://m365x222184-admin.sharepoint.com/"
Connect-SPOService -Url $sSPOAdminCenterURL
$SPOTenant=Get-SPOTenant
$SPOTenant.EnableAIPIntegration

#In case the setting is not enabled to true, we have to force it
Set-SPOTenant -EnableAIPIntegration $true

El Script os lo podéis bajar desde mi GitHub en este enlace.

Referencias: