This site uses cookies for analytics, personalized content and ads. By continuing to browse this site, you agree to this use.
Learn more
TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Tag Cloud
.net
Active Directory
AD DS
ASP.NET
azure
BizTalk
BizTalk Server
C#
C# .NET
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2013
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
marcelo strippoli
mehmet parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into Portuguese
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
windows 8
Windows Phone
Windows Phone Migration Content
windows server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
windows server 2012 r2
Wiki
>
All Tags
>
en-US
>
SharePoint 2010
>
PowerShell
Tagged Content List
Wiki Page:
SharePoint 2010: Setup Session State Service
Gokan Ozcifci
PowerShell $EnvironmentName = '< ENVIRONMENTPREFIX >' $ApplicationName = 'Session State Service' $DBName = $EnvironmentName + '_SharePoint_service_' $ApplicationName.Split(' ') | ForEach-Object {$DBName += $_} Enable-SPSessionStateService...
on
7 Jan 2014
Wiki Page:
SharePoint 2010: Installation & Setup
Gokan Ozcifci
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...
on
7 Jan 2014
Wiki Page:
SharePoint 2010: Scripting the User Interface
Gokan Ozcifci
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...
on
6 Jan 2014
Wiki Page:
SharePoint 2010: Business Continuity Plan
Gokan Ozcifci
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...
on
6 Jan 2014
Wiki Page:
SharePoint 2010: Create a new Web Application and Site Collection with Windows PowerShell
Matthew Yarlett
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...
on
27 Dec 2013
Wiki Page:
SharePoint 2010: Upload File in Document Library Using PowerShell
Matthew Yarlett
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 -...
on
27 Dec 2013
Wiki Page:
SharePoint 2010: Script to Give Reader Permission for a User in a Site Collection with PowerShell
Steven Andrews
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 ) ...
on
26 Dec 2013
Wiki Page:
SharePoint: Write-Once Fields
Carsten Siemens
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...
on
21 Dec 2013
Wiki Page:
SharePoint 2010: Find Event Receivers Attached to Lists
Benoit Jester [MVP]
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...
on
18 Dec 2013
Wiki Page:
SharePoint 2010: Community Request - Please Embrace a Multilingual TechNet Wiki
Craig Lussier
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...
on
9 Dec 2013
Wiki Page:
SharePoint 2010: Get Data from SQL Server with PowerShell
Benoit Jester [MVP]
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...
on
9 Dec 2013
Wiki Page:
SharePoint 2010: Install and Configure ADFS for SharePoint 2010 on Windows Server 8
Craig Lussier
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...
on
8 Dec 2013
Wiki Page:
How to Create a FAST Search for SharePoint Test Document Using XMLMapper
Craig Lussier
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...
on
8 Dec 2013
Page 10 of 11 (275 items)
«
7
8
9
10
11