User Profile
mikeleemsft
Joined 8 years ago
User Widgets
Recent Discussions
Re: Files shared with Anyone sometimes prompt users to request acccess to the file
I'm working on something similar and found when sharing files directly in SharePoint to a specified user, an e-mail address is added as a parameter in the sharing link. This e-mail parameter creates a LoginHint claim in the auth flow. If the e-mail does not match a user, the user is redirected to the standard sign-in experience. However, if the e-mail does match but the UPN is different, I believe this stops the sign-in flow and prompts to a password. This is still a working theory but may help with your t-shooting processes.4.6KViews0likes0CommentsRe: Cannot ADD Provider/SharePoint hosted APP in SharePoint subscription edition
Hello Padmanaban, Thank you for reporting this issue with our Public Preview release of SharePoint Server Subscription Edition. We have been able to reproduce this issue and comfirm a workaround. This issue will be fixed in the RTM release. If there are any addtional updates to share, I will updatre this post. Thanks, Mike3.5KViews0likes5CommentsRe: Cannot ADD Provider/SharePoint hosted APP in SharePoint subscription edition
Thank you! I'm working on this today. However, are you using SSL in your configuration? If so, did you enable "$contentService.SupportMultipleAppDomains = $true" See: https://docs.microsoft.com/en-us/SharePoint/administration/configure-an-environment-for-apps-for-sharepoint?redirectedfrom=MSDN#create-a-new-wildcard-ssl-certificate3.6KViews0likes7CommentsRe: Cannot ADD Provider/SharePoint hosted APP in SharePoint subscription edition
HelloPadmanaban_Jayaraman , has the status changed since you posted this? We will try to reproduce this issue. If you can provide any additional details to assist with a repro, that would be very appreciated. Thanks, Mike3.7KViews0likes9CommentsRe: Create a Contact List with PowerShell in SharePoint 2013
Matthew Carter Here is a example to create 10 contact lists in a site: Add-PSSnapin Microsoft.SharePoint.Powershell -ea -0 $site = "http://michlee-sp2013" $web = Get-SPWeb $site $listcount = 10 $ListTemplate = $web.ListTemplates["Contacts"] #Start Loop for List creation based on $listcount in ROOT Library for($l=1; $l -le $listcount; $l++) #Create the Lists { $web.Lists.Add("Contact List $l","Contac List $l",$listTemplate) Write-Host "####################################" -ForegroundColor Green write-host "List $l created in $site" -ForegroundColor Green Write-Host "####################################" -ForegroundColor Green # While creating lists put new items in it based on the $itemcount if ($l -le $listcount ) { #Start Loop for List Item creation in ROOT Library for ($i=1; $i -le $itemcount; $i++) { #Create List Item $list = $web.Lists["List $l"] $newItem = $list.AddItem() $newItem["Title"] = "Item $i" $newItem.Update() write-host "Item: $i created in list: $l" -ForegroundColor Yellow Write-Host "##############################" -ForegroundColor Yellow } } } See: https://techcommunity.microsoft.com/t5/SharePoint-Support-Blog/SharePoint-Site-Population-Script-for-Testing/ba-p/3086472KViews0likes1CommentRe: Installing SP 2019 in stand alone mode...
Trevor Seward Agreed! Stand Alone mode was removed from SharePoint 2016. https://docs.microsoft.com/en-us/sharepoint/what-s-new/what-s-deprecated-or-removed-from-sharepoint-server-2016 Standalone Install mode SharePoint Server 2016 doesn't support the standalone install option, so it is no longer available in the setup program. Use the MinRole feature during installation and choose one of the available install options. The Single Server Farm option where everything is installed on the same computer is supported for dev/test/demo purposes. When you use this option, you must install SQL Server yourself and then run the SharePoint Server 2016 farm configuration wizard. However, it seems if you choose a local account, the error is misleading, but a domain joined server is required. See: https://docs.microsoft.com/en-us/sharepoint/install/hardware-and-software-requirements-2019 Important SharePoint Server 2019 requires a minimum of an Active Directory 2003 native forest and domain functional level.14KViews1like1CommentRe: SharePoint 2019 Hybrid Sites issue
Hello, This is a known issue and the fix is being rolled out via SPO in phases. The fix will correctly redirect "https://<tenant>-my.sharepoint.com/_layouts/15/sharepoint.aspx" to https://<tenant>.sharepoint.com/_layouts/15/sharepoint.aspx. You may find that it works for some tenants and not others during the rollout. Regards, Mike Lee1.5KViews1like2Comments