Support¶
How To¶
Top limitations¶
- https://sharepointmaven.com/top-5-limitations-of-sharepoint-online/
- Top 10 limitations in Microsoft Teams
Content & Video¶
Troubleshoot¶
SharePoint Documentation¶
- SharePoint help center
- SharePoint Online admin
- SharePoint Online Troubleshooting
- Office troubleshooting for admins and IT professionals
- SharePoint Server
Licence Changes¶
- Power Platform licensing, November 2021 updates
- Microsoft 365 Licensing
- Understanding Power Platform Licensing
- Neue Lizenzierung von PowerApps
- PowerApps Licence Changes in terms that Matt Weston understands!
- PowerApps and Microsoft Flow licensing FAQs for October 2019
- Microsoft 365 Compliance Licensing Comparison
- Compare Microsoft 365 Enterprise Plans
- m365maps license features
Partner Secure Application Model¶
- Enabling the Secure Application Model framework
- Security requirements for using Partner Center or Partner Center APIs
- Connect to Exchange Online automated when MFA is enabled (Using the SecureApp Model)
SharePoint SPO¶
- SharePoint Online Support Info
- Sharepoint 2019 Feature Ids
- Change a site address
- Set up a home site for your organization
- SharePoint Admin API Access
Storage Limits¶
Admin O365¶
- TechNet Gallery - Office365
- http://aka.ms/Office-Developer (alle wichtigen Office DEV Links)
- http://aka.ms/Office-TechGuide
- https://support.office.com/?ui=de-DE&rs=de-CH&ad=CH&fromAR=1
- https://technet.microsoft.com/de-ch/
- https://products.office.com/de-CH/
- Admin-Help-O365
- https://support.office.com/en-us/
- free-ebooks-microsoft
- Click-2-Run
- URLs-und-IP-Adressbereiche-von-Office-365
- sharepoint-licensing-overview
- free-microsoft-training-resources
Azure Error Codes¶
- All AADSTS Errors
- Search AADSTS Nummer
- Resolving error AADSTS90056
- Breaking: Changes to app authentication on SharePoint!
SPO¶
Guest Users¶
- Ultimate Admin Guide to Microsoft Teams Guest Users
- SHAREPOINT ONLINE GUEST USER TROUBLES AND HOW TO GET PAST THEM
External Access¶
Diagnostics¶
Performance¶
- Creating and launching a healthy SharePoint portal
- Best practices for optimizing performance of SharePoint sites and portals in Microsoft 365
WebParts¶
Maintenance mode
- open-and-use-the-web-part-maintenance-page
- How to open SharePoint pages in maintenance mode
- Query String URL Tricks for SharePoint and Microsoft 365
- Generate Modern List Filter URL: Managed Metadata
?maintenancemode=true
?disable3PCode=1
DisableTelemetry
?disableTelemetry=true
Debug localization
?forceLocale=fr-fr
Search vertical layout refresh
?cacheClear=true
Hide the navigation
?env=Embedded is the new ?isDlg=1
?env=WebViewList
?Embed=true&sw=bypass
```html
Filter URL
- [Generate Modern List Filter URL: Managed Metadata](https://piyushksingh.com/2019/05/24/generate-modern-list-filter-url-managed-metadata/)
- [How to filter a SharePoint list or library using URL parameters](https://natechamberlain.com/2020/05/09/how-to-filter-a-sharepoint-list-or-library-using-url-parameters/)
News Links
- [Edit news links](https://emilymancini.com/2020/01/16/editing-a-news-link-in-sharepoint-online/)
to clear (debug) configs
```html
?stay=true
Error Handling
- simulating 429 throttling
- Simulating 429 Throttling in Microsoft Graph API (SharePoint/OneDrive workloads)
?test429=true
Lists¶
- Switch to classic mode
- Organize-documents-and-sites-in-office-365
- Manage-large-lists-and-libraries-in-SharePoint
- Optimising Large List Updates with PnP Batch: Handling Throttling and Enhancing Efficiency
RecycleBin¶
Create Documentation¶
Login Error¶
- How to log in to Microsoft’s websites (MSDN forums, Azure Portal, SharePoint Online) when you get a 'Bad Request' error?
- Inconvenient Microsoft Teams Authentication Error – Clear all Cookies
- SPFx App webpart is blocked in various browsers
- Authenticating to Api’s and Third Party Cookies
edge://settings/siteData?search=cookie
Throttling¶
- Avoid throttling in SharePoint Online by using RateLimit headers in API calls
- Using RateLimit headers to optimize the throttling behavior
Graph API Errors 429¶
- Simulating throttling in SharePoint
- How to use the Microsoft Graph SDK Chaos Handler to Simulate Graph API Errors
- Microsoft Graph Developer Proxy
Tips¶
- The scientific methodology for troubleshooting SharePoint
- Open in Explorer or View with File Explorer in SharePoint
Invalid File Names and Types¶
- Invalid file names and file types in OneDrive, OneDrive for Business, and SharePoint
- File naming restrictions in SharePoint
- SharePoint Naming Guidelines
- File types supported for previewing files in OneDrive, SharePoint, and Teams
No-Scripts / embedding-scripts¶
- Don't allow embedding scripts on modern sites
- Advice on using unsupported customisations (and more) in a SharePoint Online environment
Followed Sites¶
O365 Network planning¶
Clean O365¶
Classic Features¶
WebDAV¶
- Troubleshooting Explorer view and mapped drives to SharePoint
- DrDAV - A PowerShell-based diagnostic script for Windows WebClient service.
- Zee Drive for Office 365
Makros /VBA¶
- [Readiness Toolkit to assess application compatibility for Mic
Sway¶
Restore deleted owners group¶
connect-pnpOnline -Url https://contoso.sharepoint.com/sites/testclone2 -interactive
$m365GroupId = (get-pnpsite -Includes RelatedGroupId).RelatedGroupId
$m365GroupOwnerClaims = "c:0o.c|federateddirectoryclaimprovider|{0}_o" -f $m365GroupId.Guid.ToString()
Add-PnPSiteCollectionAdmin -Owners $m365GroupOwnerClaims
$owner = Get-PnPGroup -AssociatedOwnerGroup | select Title
Add-PnPGroupMember -Group $owner.Title -LoginName $m365GroupOwnerClaims | Out-Null
<##
The commented code to attempt to set the owners group as hidden did not work hence left as hidden
$list = get-pnplist "User Information List"
$ownerN = get-pnplistitem -List $list | where-object {$_.FieldValues.Name -eq $m365GroupOwnerClaims -and $_.FieldValues.EMail}
$ownerN.FieldValues.UserInfoHidden
set-pnplistitem -List $list -Identity $ownerN.Id -Values @{UserInfoHidden = $true;} -U
$ownerN = get-pnplistitem -List $list | where-object {$_.FieldValues.Name -eq $m365GroupOwnerClaims -and $_.FieldValues.EMail}
$ownerN.FieldValues.UserInfoHidden
#>