User Profile
ArjanCornelissen
Brass Contributor
Joined Sep 29, 2017
User Widgets
Recent Discussions
Re: Outlook on iOS devices is showing company logo instead of pictures or initials
Just saw it as well. There is an advisory in the Admin portal about this. https://admin.microsoft.com/AdminPortal/Home#/servicehealth/advisories/:/alerts/EX242218 Seams a bug in the iOS app. An update is being created and will be published to the app store when done. Expected to be published for approval at the end of today March 2nd11KViews1like2CommentsRe: Connect Office365 PowerShell using Service Account
donnuwanto use the command "Set-AzureADUser -ObjectID <sign-in name of the user account> -AccountEnabled $false" You should first use the command "Connect-AzureAD -Credential $O365Creds" So if you use Azure Automation you can create a new "Automation Account". In there you can go to Credentials under Shared Resources. The name you give the credential you can use in a runbook by calling $O365Cred = Get-AutomationPSCredential -Name "<your credentials name>" So the complete script can be something like this param( [Parameter(Mandatory=$true)] [guid] $UserObjectId ) $O365Cred = Get-AutomationPSCredential -Name "AzureADAdminCred" Connect-AzureAD -Credential $O365Creds Set-AzureADUser -ObjectID $UserObjectId -AccountEnabled $false Then you can run this runbook and then you are asked to give the ObjectId of the user to run it. Hope this helps.5.8KViews0likes3CommentsRe: Report on users with MFA Enabled
Disabling legacy authentication can be done with Conditional Access. Follow these steps Create a new policy Select the users that you want this enabled on Under conditions select Client apps and only select Other clients Go to grant and select block access Save this policy See the attached image101KViews0likes0CommentsRe: Unexpected changes to Login Name for SharePoint service/group IDs
The login name changed from c:0-.f|rolemanager|<sid> to c:0t.c|tenant|<guid> Go to a site where you have them added and get the GUID with Get-SPOUser or to filter the big list use Get-SPOUser -site https://<tenant>.sharepoint.com |? {$_.DisplayName -eq "SharePoint Service Administrator"} The login name will be the GUID and you can do a Set-SPOUser -LoginName "c:0t.c|tenant|<guid>" -Site https://<tenant>.sharepoint.com I have an old blog post about this and updated the scripts in there https://worktogether.tech/2016/05/01/sharepoint-online-user-policy2.7KViews1like1CommentRe: Useful resources to help build communications plan
Microsoft has some templates. Adoption and Training Kit: Communication Plan Sample: https://www.microsoft.com/en-us/download/details.aspx?id=12940 Or use this onboarding center, this is part of Microsoft Fasttrac: https://fasttrack.microsoft.com/office This checklist can become handy as well: https://aka.ms/deploy365checklist1.6KViews1like0CommentsRe: Office 365/Azure deployment questions. Move to new tenant challenge.
Microsoft is working on a way to rename the name that is exposed in SharePoint, this is the tenant's name. https://sharepoint.uservoice.com/forums/329214-sites-and-collaboration/suggestions/13217277-enable-renaming-the-site-collection-urls?page=1&per_page=20 This was posted on January 3rd. With this in the pipeline, I do not think it is needed to create a new tenant and move everything over2.3KViews0likes0CommentsRe: Add domains in one tenant OR create individual tenants, that is the question
The answer is completely depending on the amount of collaboration between the companies. As every company has their own tenant collaboration becomes harder because of having to invite every user on every tenant or create some kind of sync invite and removal per tenant. Within SharePoint and Office 365 groups you need to enable external guests to give them access. Microsoft is working on the ability to migrate companies and have some sort of coexistence. I saw this in a presentation on Ignite last year. That presentation was for Exchange. Branding of Office 365 is tenant wide, not a per domain. There is a uservoice for this https://office365.uservoice.com/forums/273493-office-365-admin/suggestions/30979093-allow-custom-branding-for-multiple-domains-in-one and https://office365.uservoice.com/forums/264636-general/suggestions/13404198-allow-for-different-branding-themes-for-users-on-t In SharePoint you can do branding per site so this should not be a big issue4.9KViews0likes1Comment
Recent Blog Articles
No content to show