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
>
PowerShell
>
has code
Tagged Content List
Wiki Page:
Active Directory: Add or Update a User Picture using PowerShell
Richard Mueller
Introduction This is a quick article to show how easy it is to update an Active Directory user account with a photo of the user. The Active Directory thumbnailPhoto attribute is used by several applications to display a picture for the user account. Microsoft Outlook is one such application...
on
9 Jan 2014
Wiki Page:
SharePoint 2010: Term Store Option is Missing
Gokan Ozcifci
Term Store Management option missing in Site Collection When you navigate to Site Actions à Site Settings within Site Collection you might notice that under Site Administration section “Term Store Management” option is not available. A hidden web application feature is not activated. Solution ...
on
9 Jan 2014
Wiki Page:
SharePoint 2010: Backup and Restore IIS Web Server Configuration Through PowerShell
Gokan Ozcifci
Backing up SharePoint 2010 IIS Web Server configuration is such an important administrative task that every SharePoint administrator should know the steps. Additionally it's a part of your disaster recovery plan that you need to document carefully SharePoint 2010 is running on IIS 7. Web Server...
on
9 Jan 2014
Wiki Page:
SharePoint 2010: Common PowerShell Snippets
Gokan Ozcifci
Table of Contents Introduction General Solution Deployment Add solution to farm Deploy Solution Enable Feature Disable Feature Uninstall Feature Branding Document Library Site Management Power-shell SharePoint 2010 Developer Dashboard activate the developer dashboard Introduction This...
on
8 Jan 2014
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: 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 2013: Creating a Dev Environment - Configuring Apps
Gokan Ozcifci
Table of Contents Configuring Apps Start Subscription Service Create Forward Lookup Zone Create Service Applications Verify the new service applications Troubleshooting It could be that If you don't know how to create a Dev Environment; go back to Creating a Dev Environment Configuring...
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:
How to Protect your Active Directory from RID Pool Depletion
Ed Price - MSFT
SID (Security Identifier) is a unique identifier that Active Directory uses to identify objects as security principal . It is maintained in every Active Directory Domain and is never re-used. The uniqueness of an SID within an Active Directory Domains comes from the uniqueness of its RID...
on
23 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
Page 70 of 75 (1,875 items)
«
68
69
70
71
72
»