nerdexam
Microsoft

70-339 · Question #71

You need to ensure that sales department users can create site collections. You run the following Windows PowerShell commands: $w.SelfServiceSiteCreationEnabled =$True $w.Update() Does the solution me

The correct answer is A. Yes. Setting SelfServiceSiteCreationEnabled to true on the SPWebApplication object and calling Update() enables users to create their own site collections within that web application.

Implement SharePoint workloads

Question

You need to ensure that sales department users can create site collections. You run the following Windows PowerShell commands:

$w.SelfServiceSiteCreationEnabled =$True $w.Update() Does the solution meet the goal?

Options

  • AYes
  • BNo

How the community answered

(28 responses)
  • A
    93% (26)
  • B
    7% (2)

Why each option

Setting SelfServiceSiteCreationEnabled to true on the SPWebApplication object and calling Update() enables users to create their own site collections within that web application.

AYesCorrect

The $w variable references an SPWebApplication object. Setting SelfServiceSiteCreationEnabled to $True on that object and calling Update() persists the change to the configuration database, enabling self-service site collection creation for users scoped to that web application. This is the correct PowerShell approach to enable this feature at the web application level.

BNo

Incorrect because both commands are valid - SelfServiceSiteCreationEnabled is a legitimate SPWebApplication property and Update() correctly commits the change to the SharePoint configuration database.

Concept tested: SharePoint self-service site collection creation via PowerShell

Source: https://learn.microsoft.com/en-us/sharepoint/administration/self-service-site-creation-in-sharepoint-server

Topics

#self-service site creation#PowerShell#SelfServiceSiteCreationEnabled#web application

Community Discussion

No community discussion yet for this question.

Full 70-339 Practice