Tagged Content List
  • Wiki Page: Active Directory: Add or Update a User Picture using PowerShell

    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...
  • Wiki Page: SharePoint 2010: Term Store Option is Missing

    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 ...
  • Wiki Page: SharePoint 2010: Backup and Restore IIS Web Server Configuration Through PowerShell

    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...
  • Wiki Page: SharePoint 2010: Common PowerShell Snippets

    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...
  • 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: 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 2013: Creating a Dev Environment - Configuring Apps

    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...
  • 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: How to Protect your Active Directory from RID Pool Depletion

    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...
  • 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...
Page 70 of 75 (1,875 items) «6869707172»