1) Index Fields:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
function IndexField($fieldName, $spList)
{
$spField = $spList.Fields[$fieldName]
$spField.Indexed = $true
$spField.Update()
$spList.FieldIndexes.Add($spField)
$spList.Update()
Write-Host "$fieldName Indexed"
}
try
{
$SiteUrl = "http://spsa00:6000/"
$web = Get-SPWeb $SiteUrl
$spList = $web.Lists["Tasks"]
IndexField "Assigned To" $spList
IndexField "Status" $spList
$web.Dispose()
}
Catch [system.exception]
{
$error[0]
}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
function IndexField($fieldName, $spList) | |
{ | |
$spField = $spList.Fields[$fieldName] | |
$spField.Indexed = $true | |
$spField.Update() | |
$spList.FieldIndexes.Add($spField) | |
$spList.Update() | |
Write-Host "$fieldName Indexed" | |
} | |
try | |
{ | |
$SiteUrl = "http://spsa00:6000/" | |
$web = Get-SPWeb $SiteUrl | |
$spList = $web.Lists["Tasks"] | |
IndexField "Assigned To" $spList | |
IndexField "Status" $spList | |
$web.Dispose() | |
} | |
Catch [system.exception] | |
{ | |
$error[0] | |
} |
2) Delete Site:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$SiteUrl = "http://spsa00:6000/" | |
$web = Get-SPWeb $SiteUrl | |
$web.Delete() | |
Write-Host "$SiteUrl Deleted" |
3) Upload Document:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
function UploadFile($Web, $DocLibName, $FilePath) | |
{ | |
$List = $Web.GetFolder($DocLibName) | |
$Files = $List.Files | |
$FileName = $FilePath.Substring($FilePath.LastIndexOf("\")+1) | |
$File= Get-ChildItem $FilePath | |
$Files.Add($DocLibName +"/" + $FileName,$File.OpenRead(),$false) | |
} | |
$SiteUrl = "http://spsa00:6000/" | |
$Web = Get-SPWeb $SiteUrl | |
UploadFile $Web "Shared Documents" "C:\Users\IA\SliderRCwebsite1.docx" | |
Write-Host "Documents Uploaded to $SiteUrl" | |
$web.Dispose() |
4)Add New Group to Site:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$SiteUrl = "http://spsa00:6000/" | |
$web = Get-SPWeb $SiteUrl | |
$user = Get-SPUser -Identity "spsa\vrd" -Web $web | |
$web.SiteGroups.Add("$web Group", $user, $user, “Group Description”) | |
$group = $web.SiteGroups["$web Group"] | |
$group.AllowMembersEditMembership = $true | |
$group.Update() | |
$groupAssignment = new-object Microsoft.SharePoint.SPRoleAssignment($group) | |
#Full Control,Design, Contribute, Read | |
$groupRoleDefinition = $web.Site.RootWeb.RoleDefinitions["Full Control"] | |
$groupAssignment.RoleDefinitionBindings.Add($groupRoleDefinition) | |
$web.RoleAssignments.Add($groupAssignment) | |
$web.Update() | |
$web.Dispose() | |
Write-Host "$SiteUrl Updated" |
5) Create New Site:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$SiteUrl = "http://spsa00:6000/" | |
$SiteTemplate = "STS#2" | |
$SiteLanguage = 1033 | |
$web = New-SPWeb $SiteUrl -Template $SiteTemplate -Name $Name -UniquePermissions -UseParentTopNav -Language $SiteLanguage | |
$web.Dispose() | |
Write-Host "Site Created for $SiteUrl" |
6) Add User to Site:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$SiteUrl = "http://spsa00:7766/" | |
$web = Get-SPWeb $SiteUrl | |
$group = $web.SiteGroups["Group Name"] | |
$user = Get-SPUser -Identity "spsa\vrd" -Web $SiteUrl | |
$group.AddUser($user) | |
$group.Update() | |
$web.Update() | |
Write-Host "Added to $SiteUrl" |
7) Clear Object Cache on All Web Front Ends
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$site = Get-SPSite "http://spsa00:7766/" | |
$cache = New-Object Microsoft.SharePoint.Publishing.SiteCacheSettingsWriter $site | |
$cache.SetFarmCacheFlushFlag() | |
$cache.Update() | |
Write-Host "Object Cache Cleared" |
8) Enable the Developer Dashboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
$ddb = [Microsoft.SharePoint.Administration.SPWebService]::ContentService.DeveloperDashboardSettings | |
#On, Off, OnDemand | |
$ddb.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::OnDemand | |
$ddb.RequiredPermissions = 'EmptyMask' | |
$ddb.TraceEnabled = $true | |
$ddb.Update() | |
Write-Host "Developer Dashboard Enabled" |
Hope you find them useful!
4 comments:
Is there a way to modify the data in the custom columns in the document library after uploading a specific document? For example I am parsing a bit of data from the document and I want to take data and put it in as a column value of "First Name".
Yes you can easily do that. Check out this link:
http://www.sharepointdiary.com/2012/07/upload-file-to-sharepoint-library-using.html
hi,
Would like to know how to check a particvular field is of type Lookup or Choice. am having a requirement wherein i need to find the a column called BU and this must be a choice field.
in our prev. designw ehad created using a lookup field.so through powershell i need to check whether the bu column is lookup, and if yes, i need to delete this list and recreate with choice field.
thnx
You are my favorite person of the day!
Thanks for posting these!
Post a Comment