This file contains hidden or 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
http://hotfixv4.microsoft.com/Windows 7/Windows Server2008 R2 SP1/sp2/Fix354919/7600/free/425407_intl_x64_zip.exe |
This file contains hidden or 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
using (var ctx = new ClientContext("https://intranet.demo.com/sites/test")) | |
{ | |
var web = ctx.Web; | |
var list = web.Lists.GetByTitle("Documents"); | |
ListItemCreationInformation lici = new ListItemCreationInformation | |
{ | |
UnderlyingObjectType = FileSystemObjectType.Folder, | |
LeafName = "TEST-CSOM" | |
}; | |
var item = list.AddItem(lici); |
This file contains hidden or 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
A database error occurred. Source: Microsoft SQL Server Native Client 10.0 Code: 2601 occurred 1 time(s) | |
Description: Cannot insert duplicate key row in object 'dbo.MSSCrawlChangedSourceDocs' with unique index 'IX_MssCrawlChangedSourceDocs'. The duplicate key value is (434, 1). |
This file contains hidden or 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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
MailNotifier mailNotifier = new MailNotifier(); | |
mailNotifier.Start(); | |
var t = Task.Factory.StartNew(() => | |
{ | |
while (Console.ReadKey().Key != ConsoleKey.Q) |
This file contains hidden or 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 -ea 0 | |
$ssa = Get-SPEnterpriseSearchServiceApplication | Where-Object {$_.Name -eq "Search Service Application"} | |
$id = Get-SPEnterpriseSearchCrawlContentSource -SearchApplication $ssa | ? { $_.Name -eq "Local SharePoint Sites"} | |
$log = New-Object Microsoft.Office.Server.Search.Administration.CrawlLog $ssa | |
Write-Host "Success:" | |
$dt = $log.GetCrawledUrls($false, 10000, $null, $false, $id.Id, 0, -1, [System.DateTime]::MinValue, [System.DateTime]::MaxValue) |
This file contains hidden or 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
GOTO LAUNCHSCRIPT | |
:LAUNCHSCRIPT | |
"%SYSTEMROOT%\system32\windowspowershell\v1.0\powershell.exe -Version 2 -NoExit" -Command Start-Process "$PSHOME\powershell.exe -Version 2 -NoExit" -Verb RunAs -ArgumentList "'%~dp0\Scripts\SPSD_Main.ps1 -Command %command% -Type %type% -Verbosity %verbosity% %saveEnvXml%'" | |
ENDLOCAL |
NewerOlder