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
function Restore-SPUserInfo{ | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true, HelpMessage='data container url')] | |
[Alias('webUrl')] | |
[string]$url, | |
[Parameter(Mandatory=$true, HelpMessage='library template type id')] | |
[Alias('libraryTemplateType')] | |
[int]$templateType, | |
[Parameter(Mandatory=$false, HelpMessage='parent content type id for the data you want to process')] |
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 indexes to a field on a list | |
Add-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
function IndexField($fieldName, $spList) | |
{ | |
$spField = $spList.Fields[$fieldName] | |
$spField.Indexed = $true | |
$spField.Update() |
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
Use Set-SPEnterpriseSearchService -PerformanceLevel Reduced to reduce the CPU impact the search service | |
Modify the C:\Program Files\Microsoft Office Servers\15.0\Search\Runtime\1.0\noderunner.exe.config so that it can only consume X amount of RAM. Change the value at to any amount of RAM you like to contain the memory leak. | |
Do not forget to restart the search service so the modification could be effective. |
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
https://camljs.codeplex.com |
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
SELECT [DeletionTime] | |
,[Id] | |
,[SiteId] | |
,[InDeletion] | |
,[Restorable] | |
FROM [content_database_name].[dbo].[SiteDeletion] |
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
<%@ Page Inherits="Microsoft.SharePoint.Publishing.TemplateRedirectionPage,Microsoft.SharePoint.Publishing,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Reference VirtualPath="~TemplatePageUrl" %> <%@ Reference VirtualPath="~masterurl/custom.master" %> | |
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"><head> | |
<title>Inicio</title> | |
<!--[if gte mso 9]><SharePoint:CTFieldRefs runat=server Prefix="mso:" FieldList="FileLeafRef,Comments,PublishingStartDate,PublishingExpirationDate,PublishingContactEmail,PublishingContactName,PublishingContactPicture,PublishingPageLayout,PublishingVariationGroupID,PublishingVariationRelationshipLinkFieldID,PublishingRollupImage,Audience,PublishingIsFurlPage,PublishingPageImage,PublishingPageContent,SummaryLinks,Art |
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
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a") | |
$publish = New-Object System.EnterpriseServices.Internal.Publish | |
$publish.GacInstall("mydllpath") | |
iisreset |
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
29/05/2012 08:44:19 a.m. - Microsoft Visual Studio Extension Installer | |
29/05/2012 08:44:19 a.m. - ------------------------------------------- | |
29/05/2012 08:44:19 a.m. - Initializing Install... | |
29/05/2012 08:44:19 a.m. - Extension Details... | |
29/05/2012 08:44:19 a.m. - Identifier : NuPackToolsVsix.Microsoft.67e54e40-0ae3-42c5-a949-fddf5739e7a5 | |
29/05/2012 08:44:19 a.m. - Name : NuGet Package Manager | |
29/05/2012 08:44:19 a.m. - Author : Microsoft Corporation | |
29/05/2012 08:44:19 a.m. - Version : 1.8.30423.9026 | |
29/05/2012 08:44:19 a.m. - Description : A collection of tools to automate the process of downloading, installing, upgrading, configuring, and removing packages from a VS Project. | |
29/05/2012 08:44:19 a.m. - Locale : en-US |
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
"{ "selectedIds": [8], "listId":"{77c51b5a-fb48-4228-8c92-ee5834d7fefc}" }" |
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
WebserviceCall = function () { | |
{ | |
var enable = true; | |
var listId = SP.ListOperation.Selection.getSelectedList(); | |
var items = SP.ListOperation.Selection.getSelectedItems(); | |
if (items.length == 0) | |
return false; | |
var selectedIds = new Array(); |
NewerOlder