Tagged Content List
  • Wiki Page: SharePoint 2010: Setup Session State Service

    PowerShell $EnvironmentName = '< ENVIRONMENTPREFIX >' $ApplicationName = 'Session State Service' $DBName = $EnvironmentName + '_SharePoint_service_' $ApplicationName.Split(' ') | ForEach-Object {$DBName += $_} Enable-SPSessionStateService...
  • Wiki Page: SharePoint 2010: Installation & Setup

    This is a public installation guide within the Microsoft Wiki. We will describe both point and click installation as well as the powershell scripted versions. Each section is broken down seperately for a complete customized installation. - If you dont want to think that far, use the wizard. Its proberly...
  • Wiki Page: SharePoint 2010: Scripting the User Interface

    Table of Contents Introduction Solution References: Introduction Occasionally, there is no way to script a setting (or configuration) in SharePoint using PowerShell. An example of this is when working with SharePoint 2010 Product key or setting a preferred search center under User Profile My...
  • Wiki Page: SharePoint 2010: Business Continuity Plan

    Business continuity is the activity performed by an organization to ensure that critical business functions will be available to customers, suppliers, regulators, and other entities that must have access to those functions. These activities include many daily chores such as project management, system...
  • Wiki Page: SharePoint 2010: Create a new Web Application and Site Collection with Windows PowerShell

    If you are nasty about creating always the same web application on SharePoint and you would like to automate it. Windows PowerShell is the solution. Microsoft SharePoint 2010 is one of the new products which supports Windows Powershell commands. Its really easy to do the most tasks you do normally...
  • Wiki Page: SharePoint 2010: Upload File in Document Library Using PowerShell

    Introduction This article contains a PowerShell function that can be used to upload a file to a document library. The Function Parameters : $webUrl - Mandatory - SharePoint Web Url - e.g. http://server:port/ $ DocLibName - Mandatory - SharePoint Library Name $ FilePath -...
  • Wiki Page: SharePoint 2010: Script to Give Reader Permission for a User in a Site Collection with PowerShell

    This script will ensure reader permissions to specified user across site collection $site = Get-SPSite -Identity "http://mysite/" $user = Get-SPUser -Identity "mydomain\myuser" -Web $site . RootWeb $assignment = New-Object Microsoft.SharePoint.SPRoleAssignment ( $user ) ...
  • Wiki Page: SharePoint: Write-Once Fields

    Introduction Assume you have a requirement for making fields on a list read only once an item is added (a write-once field). Using the UI (User Interface), this isn't possible. There is a way to achieve a similar result though, by using PowerShell to edit the field (or by using CAML properties...
  • Wiki Page: SharePoint 2010: Find Event Receivers Attached to Lists

    Scenario You inherit a SharePoint site. Some of the lists do odd things and you want to find out if there are there event receivers on the list. If you have access to PowerShell and the SharePoint servers, you can use the following PowerShell code to find out. $GC = Start-SPAssignment $Site...
  • Wiki Page: SharePoint 2010: Community Request - Please Embrace a Multilingual TechNet Wiki

    Update - Feb 25th, 2012 I wanted to update this post, as my initiative has been generating some differing opinions - which is exactly what I was hoping for. We're all on the same team and want the best solution possible for language support in the TechNet Wiki. There has been a positive chat...
  • Wiki Page: SharePoint 2010: Get Data from SQL Server with PowerShell

    A little script for getting data from SQL Server with PowerShell in SharePoint 2010: $SqlConnection = New-Object System.Data.SqlClient.SqlConnection $SqlConnection . ConnectionString = "Server=SQLServer\SQLInstance;Database=DataBaseName;Integrated Security=True" $SqlConnection...
  • Wiki Page: SharePoint 2010: Install and Configure ADFS for SharePoint 2010 on Windows Server 8

    Active Directory Federation Services (AD FS) 2.0 helps simplify access to applications and other systems with an open and interoperable claims-based model. The AD FS 2.0 platform provides a fully redesigned Windows-based Federation Service that supports the WS-Trust, WS-Federation, and Security Assertion...
  • Wiki Page: How to Create a FAST Search for SharePoint Test Document Using XMLMapper

    FAST Search Server 2010 for SharePoint (FAST Search for SharePoint) is an alternative to the out-of-box SharePoint Server search (the built-in enterprise search solution in SharePoint Server 2010). If you want to understand the differences between SharePoint Server search and FAST Search for SharePoint...
Page 10 of 11 (275 items) «7891011