Forum Discussion
SharePoint 2016 on premise App Launcher
Hello everyone. After installing SharePoint 2016 and Feature Pack 1 and April 2017 CU, i am unable to create new custom tile links.
I can see the hidden library
I can update and create new links.
But when i go to IE and clear the links cache as it suggested in the technet article https://technet.microsoft.com/en-us/library/mt790697(v=office.16).aspx, my suite links do no appear, OR update. All i see is the standard, newsfeed, onedrive, sites.
I have run ClearSuiteLinksCache() and it returns undefined.
I have made the list visible as per the instructions.
No matter what i try, IISRESET, reboot, clear object caches, the links do not appear.
Has anyone seen this issue?
Nando
1 Reply
- Fernando MeloCopper Contributor
Well, I just wanted to report back that I fixed it by disabling the feature, and re enabling it again.
here are the commands i used:
Disable-SPFeature -identity "CustomTiles" -Url https://portal.contoso.com -Force
Enable-SPFeature -identity "CustomTiles" -Url https://portal.contoso.com -Force
then to unhide
$web = get-spweb "https://portal.contoso.com"
$list = $web.Lists["Custom Tiles"]
$list.hidden = $false
$list.update()