Skip to main content

Posts

Showing posts with the label Sharepoint online

We're having trouble generating a transcript and captions right now. Try again in a bit.

 We're having trouble generating a transcript and captions right now. Try again in a bit. We received this error while trying to auto-generate captions for a video in SharePoint online. The error didn't provide any clue as to why this happens but then we noticed that the video was uploaded to Styles Library for some reason and once we moved that to another Document Library captions started working fine. Why this happens with videos in Styles Library we don't know, I couldn't find any relevant documents or articles but Styles Library isn't meant to be storing business content. Glad we found the solution and a simple solution!

SharePoint Online - Export Term Store data

We had a requirement to export Terms from a particular Term Store Group in our SPO tenant but I couldn't find a script that goes in to Level 2 and Level 3 Terms or if there is one out there I couldn't find it. I checked many forums and blogs and thanks to all those contributors who inspired me to come up with this script. This isn't perfect by any means and I would like to improve and clean this up a bit but I'm sharing this here so its documented where I can fix this later and also probably help someone. The script will export the data in hierarchical form in a .csv file.   # Tenant url $url="<enter your SharePoint admin url>" # Term Group names as an array $groups = @("")  # location of CSV file $FilePath="Terms.csv"  # Variable to collect all data and export to CSV $results = New-Object System.Collections.ArrayList # Function to iterate through Term store function Get-TermsAsCSV {           try       {  ...

SharePoint Online (SPO) List Items Read-only

Issue : I came across a situation where certain items in a SPO List was read only and that too for just one user and this user is also a Site Owner with Full Control on the List and Site. It was a strange situation as other users were able to edit those List items - the affected user tried Data Grid option as well but couldn't edit. This was similar to item level permission set on the List but in this case it wasn't set. Resolution : After some external support it was found that this was caused by List Sync, once the sync was stopped the items were editable. Here are the steps: 1. Go to their List home page (App menu in the upper right of SharePoint -> All Apps -> Lists). 2. Find the list you'd like to stop syncing. 3. Click the ... button pictured below. 4. If the list is syncing, there will be a menu option for "Stop Syncing". Click on stop syncing to stop the syncing. If you want to disable sync for all users for a particular List then: Navigate to List S...

This feature has been disabled by your administrator - Office 2013

I got this rather nagging error while trying to customize a List in our SharePoint Online site using Infopath 2013. It turned out that you have to do some registry hack to get this working. Change the value of registry key  SignInOptions under HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\SignIn\ to 0. You may also want to change the  UseOnlineContent key under HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Internet\ to 2. If you cannot find these keys in registry a new DWORD can be created. There is a blog post from Sahil Malik which helped me solve this issue: http://blah.winsmarts.com/2013-5-Registry_keys_to_administer_Office_365_in_your_Organization.aspx Here is the Microsoft document on this: http://technet.microsoft.com/en-us/library/jj715259(v=office.15).aspx These settings are best handled through Group Policy and you may want to check with your IT/Network team before doing these changes.