PowerShell Script to Tune “Allows contributors to add or edit scriptable Web Parts.” to webapplication

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/224306

  •  31-12-2020
  •  | 
  •  

Domanda

I need to tune below option "Allows contributors to add or edit scriptable Web Parts" for particular web-application .

Can any one help me in getting this through powershell script enter image description here

È stato utile?

Soluzione

For a bit of context, the page you are in can be found in

Central Administration > Security > Manage web part security

There are 3 properties there, all can be accessed through server object model.

$wa = get-spwebapplication http://contoso
$wa.AllowPartToPartCommunication
$wa.AllowAccessToWebPartCatalog
$wa.AllowContributorsToEditScriptableParts

You can tweak as a regular bool

$wa.AllowContributorsToEditScriptableParts = $true
$wa.Update()

If you are looking for solutions in the context of Office 365, I can't help you, but perhaps this can point you in the right direction.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top