User Profile
agaskell
Copper Contributor
Joined Nov 10, 2019
User Widgets
Recent Discussions
Unable to create a team using Teams Preview
I am currently testing Teams Preview desktop client in our tenant. When I click on "+", followed by "Create Team" nothing happens. There is no dialog/prompt or anything. I am a member of a security group which I set up to allow limited access in the tenant for group creation. This has been working well for many years with the classic teams desktop client. When I switch back to the current (older) teams client, I am able to create a team with no issues. I looked in the documentation and I don't see this as a known issue. Can you help? Thanks.Solved1KViews0likes2CommentsRe: Searching Audit log Strange Behavior
Well its June 2022 and I am seeing the same issue with duplicate results. I implemented a simple while loop to check for it and repeat the run until the data is good. I set a max of 10 loops, but I have noticed that the data is OK on the 2nd query (but not always!). #Attempt 1. $AuditResults = Search-UnifiedAuditLog -StartDate $startOfMonth -EndDate $endOfMonth -SessionCommand ReturnLargeSet -resultsize 1000 -Operations FileDownloaded -SiteID "<Insert Site ID>" -FreeText Certification #Additional Attempts if ( $AuditResults.Count -gt 0 ) { #We have some results. Check if the data is good. while($AuditResults[0].ResultIndex -eq -1) { $AuditResults = Search-UnifiedAuditLog -StartDate $startOfMonth -EndDate $endOfMonth -SessionCommand ReturnLargeSet -resultsize 1000 -Operations FileDownloaded -SiteID "<insertSiteID>" -FreeText Certification $loop++ #Prevent an infinite or very high loop by setting a max. of 10 iterations. if($loop -gt 10) { break } } }4.5KViews0likes0CommentsHow to connect a O365 Team to a different group?
Hi all I have an O365 Team that a user created. He now realizes that when he created it, he connected it to the wrong O365 group. He wants to connect the Team to a completely new O365 group, so that there will be an empty site collection attached. He also wants to retain the old O365 group as its in use for other purposes. Is this posible using powershell or otherwise? Thanks AndrewSolved1.8KViews0likes6Comments
Recent Blog Articles
No content to show