Forum Discussion

robert_robert's avatar
robert_robert
Brass Contributor
Mar 04, 2020
Solved

Save list as template missing

Hello guys , 

i am using SPO ,

  • created a Team site.
  • created list

then i tried to go to list setting to Save List As Template "  but i couldn't find the option so i googled and i found that i have to go to sharepoint admin center ... settings ... custom script section then choose allow users to run custom scripts on personal sites ... but the problem is i found it already chosen ... so i did it the powershell way 

 

#Variables for Admin Center & Site Collection URL
 
#Connect to SharePoint Online
Connect-SPOService -url $AdminCenterURL -Credential (Get-Credential)
 
#Disable DenyAddAndCustomizePages Flag
Set-SPOSite $SiteURL -DenyAddAndCustomizePages $False
 
 my question now is how do i make it available to all my sharepoint sites ? i don't want to do it manually every time ... ??? does turning the custom scripts off then on solve it ?
 

Resources