Day Tips:Remote 服务器黑屏
摘要:如果是台式机:CTRL+ALT+End笔记本一般情况下End建和其他的键混合使用,所以是Fn+CTRL+ALT+End
阅读全文
posted @
2013-11-19 17:09
轻轻插一下
阅读(257)
推荐(0)
Day Tips:Search CPU 100%
摘要:Powershell:Set-SPEnterpriseSearchService -PerformanceLevel Reduced Specifies the relative number of threads for the crawl component performance:Reduced: Total number of threads = number of ...
阅读全文
posted @
2013-11-18 19:44
轻轻插一下
阅读(232)
推荐(0)
Day Tips:分布式缓存的删除和重建
摘要:遇到cacheHostInfo is null 错误时,必须将这台服务器上的实例删除重新创建 $instanceName ="SPDistributedCacheService Name=AppFabricCachingService"; $serviceInstance = Get-SPServiceInstance | ? {($_.service.tostring()) -eq $instanceName -and ($_.server.name) -eq $env:computername}; $serviceInstance.Delete()如果删除重建之后仍然不
阅读全文
posted @
2013-11-14 16:24
轻轻插一下
阅读(627)
推荐(0)
Day Tips:ForceDeleteSite
摘要:最近遇到一个奇怪的问题,如下图: 试了各种删除方式都不行。谷歌了一下发现需要使用如下代码删除。SPWebApplication w = SPWebApplication.Lookup(new Uri("xxx")); ; SPContentDatabaseCollection dbs = w.ContentDatabases; fo...
阅读全文
posted @
2013-11-06 18:32
轻轻插一下
阅读(266)
推荐(0)