Administrator Teams
10 TopicsMicrosoft Teams : Unable to add the domains in external access
Hello All Hope eveyone is doing great. am looking for the help from MS teams experts for one of my issues facing in Teams admin portal My tenant is not open to extrenal domains, and its restricted to only allowed external domains for chat and calling funtionality. All of sudden, am unbale to add any of the domains in externals access via teams admin portal (GUI) its not allowing me to click DONE to save the changes further. please find the screenshot however i can able to add it via powershell Ramki: 02/29/2024 14:42:15>$Domain = "orange.in" Ramki: 02/29/2024 14:43:27>Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Add=$Domain} Ramki: 02/29/2024 14:43:30>$Domain = "orange.com" Ramki: 02/29/2024 14:44:01>Set-CsTenantFederationConfiguration -AllowedDomainsAsAList @{Add=$Domain} i have tried differnt browser and different system, No luck.1.2KViews0likes4CommentsCan I block upload of data based on DLP Policy and/or Sensitivity Label?
Hi everyone, Is there a way to block users from uploading files to the cloud that are identified as Sensitive Information Type/DLP or marked with a Sensitivity Label (SL) via OneDrive Sync and Teams (Windows app)? I know you can block the web version of Teams through Defender for Cloud, but that is not enough. This is because some customers don't want their data to be sent or stored in the cloud. This means that the data needs to be blocked before it reaches the cloud. Users' devices are all managed by Intune and use M365 Apps for Enterprise. Only certain customer data must not be uploaded to the cloud, so we want to use SIT/DLP and SL to identify the data. The solution can be a third party agent/app that needs to be installed on the device. Thanks in advance.Solved14KViews0likes3CommentsShared Drive migration to SharePoint/teams 365 Search problem
Hello we are in the mix of a SharePoint migration, and i have found a slight pickle not sure how to deal with it! So we have SHaregate (which is a god send) and i have used this to migrate literally everything from our 2010 SP site over to 365, but now were looking at moving Departments over to Teams/SharePoint. I say Slash SharePoint as they will all be having a SharePoint site, if you can call it that, im still trying to understand all this! I digress, so we have our department where we have a ridiculous amaount of folders and subfolders (talking at least 8 sub folders maybe more) and when i have tried copying over these straight into a library. left it overnight, being able to search for items within just doesnt work. even if its a item, within 1 level of a folder. what i want really is confirmation from a Microsoft person so i can tell my boss that we have to build our architecture before putting in these files! Not just dumping in loads of folders, its barbaric! in my opinion.. Its going to be a long process, especially for some departments, but I think its the only way. Or is this a bug and microsoft does actually support folders now and content types and meta data are a thing of the past? if someone could just clarify I'm from an age of doing Migrations old school, and working on SharePoint from the beginning of time so I can take a hit or two, i just need to understand the new ways so I can mould it into our organisation correctly. Thanks in advance! A much SharePoint lover SSolved1.3KViews0likes2CommentsUnable to call 200 help line using Microsoft Teams (US based)
Hello Team, We would like to confirm if others are experiencing or is aware of this behavior. We are using Teams as our telephony service and we are able to call emergency numbers like 911 using Teams but not 211 helpline nor 800. Is there any documentation regarding this? Thank you!911Views0likes1CommentName in "Files" tab isn't the same as Channel's name
I have the same problem as described in the discussion 1538516 , i.e. user created a channel on teams, later the name of the channel was changed, but the name of the "Files" folder keeps the original channel's name (see image below). The resolution in the discussion 1538516 was "Within the files tab, click the globe in the top right corner and this will take you to the SharePoint document library where you can update the settings." I conducted the steps as described, but I am getting the following error (I am performing this operation using a Channel Owner user): Any ideas? Best,Solved3.6KViews1like2CommentsCannot add custom app to the Teams Sidebar in Teams
Hello everyone, I’d like to thank you in advance for your replies and assistance. I ready do greatly appreciate it. I have an issue when trying to add an app within Teams. Inside Microsoft Teams, in the Teams sidebar on the left, there are the 3 dots which allow a user to add more apps within Teams. When clicking these dots and adding for example the Microsoft Forms app, I search for the app, it shows up, I choose it, and then there’s an “Add” button (with its own drop-down menu) where I then have the option to add it to either a team, a chart, or a meeting. The problem I run into is that when trying to add a custom App (an app/SharePoint hub site that was built for our organization) within Teams, I search for the app, it is found, I click it, but now there is no “Add” button. The custom app is not blocked (allowed) in the Microsoft Teams Admin Center, and employees could previously add this app within Teams and pin it to the Teams sidebar without a problem. But that is no longer possible since the Add button is gone. In the Org-Setting the third party apps are allowed and custom apps are also allowed and not blocked. Any idea? Thx a Million.5.1KViews0likes1CommentMessage deletion policy in Microsoft Teams
Hello everyone! I really ask for your help. Why isn't the Microsoft Teams chat message deletion policy working? My actions: 1) I have opened Microsoft 365 compliance cente. 2) Then I opened the "Politics" section. 3) Then I opened the "Storage" section. 4) Then I clicked "Create Retention Policy". 5) Then I selected a policy for "Teams Chats" and selected "Remove items only when they reach a certain age." I configured to delete messages older than one day. But nothing works. Help me please.Solved3.5KViews0likes2CommentsCreate Teams from csv
I am trying to create Teams from a CSV file My Csv: Mail TeamsName TeamsDescription Type TypeTemplate Owners EV0123 EV - Prova Descrizione1 Private EDU_Class email@dom.it SN0123 SN - Prova2 Descrizione2 Private EDU_Class email@dom.it This is the code: function Create-NewTeam { param ( $ImportPath ) Process { Import-Module MicrosoftTeams $cred = Get-Credential $username = $cred.UserName Connect-MicrosoftTeams -Credential $cred $teams = Import-Csv -Path $ImportPath foreach($team in $teams) { $getteam= get-team |where-object { $_.displayname -eq $team.TeamsName} If($getteam -eq $null) { Write-Host "Start creating the team: " $team.TeamsName $group = New-Team -MailNickName $team.Mail -displayname $team.TeamsName -Description $team.TeamsDescription -Visibility $team.TeamType -Template $team.TypeTemplate #Write-Host "Adding team members..." #Add-Users -Users $team.Members -GroupId $group.GroupId -CurrentUsername $username -Role Member #Write-Host "Adding team owners..." #Add-Users -Users $team.Owners -GroupId $group.GroupId -CurrentUsername $username -Role Owner Write-Host "Completed creating the team: " $team.TeamsName $team=$null } } } } Create-NewTeam -ImportPath "C:\Users\PC\OFFICE 365\Gruppi_class_team.csv" This is the error: New-Team : Impossibile convalidare l'argomento sul parametro 'MailNickName'. L'argomento è null o vuoto. Fornire un argomento che non sia null o vuoto ed eseguire di nuovo il comando. In riga:19 car:49 + $group = New-Team -MailNickName $team.Mail -displayna ... + ~~~~~~~~~~ + CategoryInfo : InvalidData: (:) [New-Team], ParameterBindingValidationException + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.TeamsCmdlets.PowerShell.Custom.NewTeam18KViews0likes11CommentsScreen Share issue from a Remote PC
I am connecting to my organization issued PC using RDC from personal MAC. I observed that I am Unable to share the screen(full desktop) on Teams but it works for individual applications. Also, If I RDP into same PC through my personal Windows PC, I am able to share full desktop as well as individual application. It looks like the issue is seen after recent update to MS Teams. Has anyone else seen this issue?8.7KViews0likes2Comments