This is the fourth in a series of posts on scripting administrative functions in SharePoint. I assume you have already created a farm. In this post we will add a new anonymous web application. If you are interested in configuring anonymous access using central administration check out:
http://www.topsharepoint.com/enable-anonymous-access-in-sharepoint-2010.
An anonymous web application will allow users to access your SharePoint site without logging in. Let’s start by creating a new web application. This script is similar to the last web application we created with two changes. First, we pass AllowAnonymous flag to New-SPAuthenticationProvider. Similarly, we add the AllowAnonymousAccess flag to New-SPWebApplication.
Note that we have only enabled anonymous access at this point. By default, new content will still require authentication unless you explicitly grant permissions to anonymous users.
1
2
3
4
5
6
7
8
9
10
11
12
|
$WebAppURL = "http://www.brianbeach.com"
$HostHeader = "www.brianbeach.com"
$WebAppName = "Anonymous Web Application"
$ContentDatabase = "Content_Anonymous_Default"
$AppPoolName = "Anonymous Content"
$AppPoolUserName = "DOMAIN\USER_NAME"
Write-Host "Creating the anonymous web application"
$AppPoolCred = Get-Credential $AppPoolUserName
$AppPoolAccount = New-SPManagedAccount -Credential $AppPoolCred
$AuthProvider = New-SPAuthenticationProvider -AllowAnonymous
$WebApp = New-SPWebApplication -AllowAnonymousAccess -ApplicationPool $AppPoolName -ApplicationPoolAccount $AppPoolAccount -Name $WebAppName -URL $WebAppURL -HostHeader $HostHeader -Port 80 -AuthenticationProvider $AuthProvider -DatabaseName $ContentDatabase
|
At this point we have a new web application, but there is no content added yet. Now, let’s add a new site collection and grant permission to anonymous users. This script is nearly identical to the scripts we created in the prior post, with addition of AnonymousState and AnonymousPermMask.
1
2
3
4
5
6
7
8
9
10
11
12
|
$SiteName = "Anonymous Root Site"
$OwnerEmail = "USER_NAME@DOMAIN.com"
$OwnerAlias = "DOMAIN\USER_NAME"
$SiteURL = "http://www.brianbeach.com"
Write-Host "Creating a default site collection in the anonymous web application"
New-SPSite -Url $SiteURL -owneralias $OwnerAlias -ownerEmail $OwnerEmail -Template "STS#0"
$Web = Get-SPWeb $SiteURL
$Web.title = $SiteName
$Web.AnonymousState = 2;
$Web.AnonymousPermMask64 = "ViewListItems, ViewVersions, ViewFormPages, Open, ViewPages, UseClientIntegration, AddListItems"
$Web.update()
|
AnonymousState determines if anonymous users have access to the site collection as follows:
- A "0" disables anonymous access. In other words, anonymous users have no access to a Web site.
- A "1" allows default anonymous access. This specifies that anonymous users can access lists and libraries if the lists and libraries allow anonymous access.
- A "2" specifies that anonymous users can access the entire Web site.
AnonymousPermMask allows you to control granular permissions. The values of the mask (taken directly from the source code) are:
- ViewListItems = View items in lists, documents in document libraries, and view Web discussion
- AddListItems = items to lists, add documents to document libraries, and add Web discussion
- EditListItems = Edit items in lists, edit documents in document libraries, edit Web discussion comments in documents, and customize Web Part Pages in document libraries.
- DeleteListItems = Delete items from a list, documents from a document library, and Web discussion comments in documents.
- ApproveItems = Approve a minor version of a list item or document.
- OpenItems = View the source of documents with server-side file handlers.
- ViewVersions = View past versions of a list item or document.
- DeleteVersions = Delete past versions of a list item or document.
- CancelCheckout = Discard or check in a document which is checked out to another user.
- ManagePersonalViews = Create, change, and delete personal views of lists.
- ManageLists = Create and delete lists, add or remove columns in a list, and add or remove public views of a list.
- ViewFormPages = View forms, views, and application pages, and enumerate lists.
- Open = Allow users to open a Web site, list, or folder to access items inside that container.
- ViewPages = View pages in a Web site.
- AddAndCustomizePages = Add, change, or delete HTML pages or Web Part Pages, and edit the Web site using a Windows SharePoint Services–compatible editor.
- ApplyThemeAndBorder = Apply a theme or borders to the entire Web site.
- ApplyStyleSheets = Apply a style sheet (.css file) to the Web site.
- ViewUsageData = View reports on Web site usage.
- CreateSSCSite = Create a Web site using Self-Service Site Creation.
- ManageSubwebs = Create subsites such as team sites, Meeting Workspace sites, and Document Workspace sites.
- CreateGroups = Create a group of users that can be used anywhere within the site collection.
- ManagePermissions = Create and change permission levels on the Web site and assign permissions to users and groups.
- BrowseDirectories = Enumerate files and folders in a Web site using Microsoft Office SharePoint Designer 2007 and WebDAV interfaces.
- BrowseUserInfo = View information about users of the Web site.
- AddDelPrivateWebParts = Add or remove personal Web Parts on a Web Part Page.
- UpdatePersonalWebParts = Update Web Parts to display personalized information.
- ManageWeb = Grant the ability to perform all administration tasks for the Web site as well as manage content. Activate, deactivate, or edit properties of Web site features through the object model or through the user interface (UI). When granted on the root Web site of a site collection, activate, deactivate or edit properties of site collection scoped Features through the object model. To browse to the Site Collection Features page and activate or deactivate site collection scoped Features through the UI, you must be a site collection administrator.
- UseClientIntegration = Use features that launch client applications; otherwise, users must work
- UseRemoteAPIs = Use SOAP, WebDAV, or Microsoft Office SharePoint Designer 2007 interfaces to access the Web site.
- ManageAlerts = Manage alerts for all users of the Web site.
- CreateAlerts = Create e-mail alerts.
- EditMyUserInfo = Allows a user to change his or her user information, such as adding a picture.
- EnumeratePermissions = Enumerate permissions on the Web site, list, folder, document, or list item.
In the next post we will enable SSL.