365
24 TopicsWorking with multiple work accounts on a windows 10 device
Hello everyone I think it's time for me to vent my frustration about working with multiple work/education accounts on a windows 10 device... First of all, I have 3 Microsoft Accounts (1x Personal; 1x Work; 1x Education) and oh boy, it's very very frustrating to get all these 3 Accounts work together on the same windows 10 device with one Userprofile. Working with my Personal and Work (or Education) account on the same device works fine, no problems, but as soon as I add additionally either my Work or Education Account in the Windows 10 settings under "Account > Email & accounts" things starting to get complicated. Sync issues across every app that uses one of these work/education accounts (classic Office Apps, ToDo, Edge, OneNote) Upload blocks in the office apps (Word, Excel...) & Credential Errors 4x/day a notification toast that my work accounts need to fix... blabla -> I click okay, now fix it -> Accounts fixed -> later in the day, same error occurs... I just want to use all my accounts on the same device with the same Userprofile, I really love the Microsoft 365 Platform but these things driving me crazy. I had a time, in there I worked completely online, but yeah, we all know how cool it is to work with the online versions of Office Apps. I also tried multi-bootable windows installations or multiple Userprofiles and it worked, but I often need to access files/services that are stored in the OneDrive from my Education Account or vise versa, so it's really impracticable. Then I tried to link my accounts just in these apps where I need it, but Windows 10 really have fun on it to write in my accounts under the named windows 10 settings location. Has anyone a best practice, tips/tricks etc. everything helps... Thanks.25KViews3likes12CommentsTeams for Microsoft 365 Family Status and Questions
Background: I've been global admin for a 365 Business Basic tenant since early 2020, so already have Teams. I've also had Microsoft 365 Family (formerly Office 365 Home) for years. Back in 2019, I created a free Teams instance using my personal Microsoft account. We've been hearing about Teams Family for months. Now it's October and I still don't see any difference. When logged into my personal Microsoft account, Teams still doesn't appear in the Office app or Office.com or Live.com all apps list. The only thing I've noticed is greater promotion of free Teams for everyone (not just 365 Family subscribers). This begs the question: Is there or will there be any difference between free Teams and Teams for 365 Family? Should I just keep using the free Teams instance I created more than a year ago and just expect to see a Teams shortcut appear inside MS 365 Family at some point?Solved11KViews1like11CommentsDelay between Graph API and Teams Client
Hello We have a Teams automation, where we are removing members from teams which are classified as internal . This was working Okiesh for a year, however since last few months we are observing that it takes almost 2 days to get the Guest user actually removed from Teams Client. We use Graph api (Memebers endpoint ) to remove these users. The endpoint correctly return number of members with GET request. However , GUEST user can still access the teams for around two days then ultimately gets removed. Strange thing is, Guest users access to respective sharepoint site is removed immediately, its only Teams client that takes time. We have tried both V1 and Beta endpoint Have seen users reporting this randomly over the internet. One such case is at below link https://stackoverflow.com/questions/51291779/teams-graph-api-adding-a-team-member-not-always-working https://stackoverflow.com/questions/57004682/aad-groups-and-ms-teams-sync-is-too-slowSolved3.4KViews0likes2CommentsMigrating Videos from SharePoint Server 2016 to Stream 365
Hi, currently working on migrating from from SharePoint 2016 to 365. With SharePoint 2016 videos are stored on the server, my struggle is trying to understand how to migrate videos from the server into stream. I have tried testing with one video that is an mp4 and is not a large file, but it keeps saying that its failing to upload. I'm not sure what the problem is. Please help! Thank youNo setting default margins?
I noticed this note when perusing the help topic for page layout in Excel Office 365. Note: Page margins that you define in a particular worksheet are stored with that worksheet when you save the workbook. You can't change the default page margins for new workbooks. I am really curious why this feature would be taken away. It seems short sighted to stop allowing users to set up their default template for office2.5KViews0likes5CommentsPeople Webpart doesn't show the pictures
Hello guys, I want to ask you something, I have a SharePoint site integrated with my 365 platform. In the site I use the Webpart People to add new hires, I mean, it's like a Welcome aboard.. In the user profile in 365 platform, I add the user's picture but in the WebPart the picture is not shown. There seems to be a synchronization problem. Do you have any idea how to solve it? Thanks in advance,1.9KViews0likes1CommentOutlook Group Calendars - The operation failed. An object could not be found
Hello everyone, We have an issue where a user can't use any of it's M365 group calendars in the Outlook client (for Windows) anymore. Once a new item should be created, we receive the error message from the screenshot below. The permissions are all fine, since on OWA the calendars are fully functional. What we did so far: - Recreate the mail profile in the control center - Reinstall whole Office suite (includes Outlook) - Upgrade Office suite from 32 to 64 bit Finally the mentioned error message (unfortunately in german), but I think the english translation would be "The operation failed. An object could not be found.": Maybe someone has an idea how to solve this issue? Thank you!1.9KViews0likes0CommentsWindows 11 ARM Microsoft 365 broken login - Outlook "unable to connect right now"
Hi all, HNY Came back from holiday to see that my Company Policy required to change my AD password as 4 months had passed. Did that on a Win 11 PC, no problems. Outlook showed 'trying to connect...' and 'Need Password', which when clicked opened the Microsoft 365 login page requesting the updated password etc. Moving to my Win 11 ARM machine (build 25267.1000) and opening up Outlook, I immediately get a pop up saying "we are unable to connect right now". Clicking the 'Need Password' opens up the same dialog again. I have tried to create a new profile using Control Panel->Mail, but the Add new account is again unable to Connect to the Mail server. My other Windows 11 PC Laptops work as expected from the same connection, so it is not a network issue. Has anyone else noticed the latest Dev build breaking the Microsoft 365 login process? Have tried downgrading Office 365 two builds to see if that was the problem, but it is not. Thanks!1.7KViews1like4CommentsBlogpost - Get-MailDomainInfo function for retrieving all email DNS records
Wrote a blogpost about it, but this is the Function I made to get all the email dns records in a convenient way. (Saves time querying mxtoolbox.com 😉 ) function Get-MailDomainInfo { param( [parameter(Mandatory = $true)][string]$DomainName, [parameter(Mandatory = $false)][string]$DNSserver ) #Use DNS server 1.1.1.1 when parameter DNSserver is not used if (-not ($DNSserver)) { $DNSserver = '1.1.1.1' } #Retrieve all mail DNS records $autodiscoverA = (Resolve-DnsName -Name "autodiscover.$($domainname)" -Type A -Server $DNSserver -ErrorAction SilentlyContinue).IPAddress $autodiscoverCNAME = (Resolve-DnsName -Name "autodiscover.$($domainname)" -Type CNAME -Server $DNSserver -ErrorAction SilentlyContinue).NameHost $dkim1 = Resolve-DnsName -Name "selector1._domainkey.$($domainname)" -Type CNAME -Server $DNSserver -ErrorAction SilentlyContinue $dkim2 = Resolve-DnsName -Name "selector2._domainkey.$($domainname)" -Type CNAME -Server $DNSserver -ErrorAction SilentlyContinue $domain = Resolve-DnsName -Name $DomainName -Server $DNSserver -ErrorAction SilentlyContinue $dmarc = (Resolve-DnsName -Name "_dmarc.$($DomainName)" -Type TXT -Server $DNSserver -ErrorAction SilentlyContinue).Strings $mx = (Resolve-DnsName -Name $DomainName -Type MX -Server $DNSserver -ErrorAction SilentlyContinue).NameExchange $spf = (Resolve-DnsName -Name $DomainName -Type TXT -Server $DNSserver -ErrorAction SilentlyContinue | Where-Object Strings -Match 'v=spf').Strings #Set variables to Not enabled or found if they can't be retrieved #and stop script if domainname is not valid $errorfinding = 'Not enabled' if ($null -eq $domain) { Write-Warning ("{0} not found" -f $DomainName) return } if ($null -eq $dkim1 -and $null -eq $dkim2) { $dkim = $errorfinding } else { $dkim = "$($dkim1.Name) , $($dkim2.Name)" } if ($null -eq $dmarc) { $dmarc = $errorfinding } if ($null -eq $mx) { $mx = $errorfinding } if ($null -eq $spf) { $spf = $errorfinding } if (($autodiscoverA).count -gt 1) { $autodiscoverA = $errorfinding } if ($null -eq $autodiscoverCNAME) { $autodiscoverCNAME = $errorfinding } $info = [PSCustomObject]@{ 'Domain Name' = $DomainName 'Autodiscover IP-Address' = $autodiscoverA 'Autodiscover CNAME ' = $autodiscoverCNAME 'DKIM Record' = $dkim 'DMARC Record' = "$($dmarc)" 'MX Record(s)' = $mx -join ', ' 'SPF Record' = "$($spf)" } return $info } (https://powershellisfun.com)1.3KViews0likes0Comments