Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

I am working on a powershell script to update the following user profile property on my SharePoint 2013 enviornment,

  1. Personal Site
  2. Personal Site Capabilities: 0
  3. Feed service provider defined identifier

However I see this property as "Get" property in the User Profile class. We could update this using the Central Admin application.

Any one has done this using PowerShell ?

Any pointers

share|improve this question

1 Answer

The way I usually hunt down how to do these things in PowerShell, is to find the page where it is done in UI (usually a page in _LAYOUTS), find out what assembly that contains the codebehind and what methods are involved (lookin PAGE directive), load the assembly into Reflector and see how SharePoint does it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.