1-Search content sources disponibles para crawl
2-Error al borrar una solución sandbox
Si tienes el error: "Unable to access web scoped feature Id: GUID because it references a non-existent or broken web..."
Ve a la papelera de reciclaje y borra la solucíón sandbox
3-Setear la ventana de horario para consultas extensas con PowerShell
$hour = "22"
$minute = "30"
#la ventana horario, de 0 a 24
$duration = "16"
Get-SPWebApplication | % { $_.UnthrottledPrivilegedOperationWindowEnabled = $true; $_.SetDailyUnthrottledPrivilegedOperationWindow($hour, $minute, $duration); $_.Update() }
4-Ocultar/Mostrar una columna en los formularios New/Edit usando powershell
$webUrl = Get-SPWeb http://spssite
$listName = $web.Lists["Tasks"]
$columnName = $list.Fields["date"]
Si deseas ocultar la columna en Edit Form entonces usa:
$columnName.ShowInEditForm = $false
Si deseas mostrar la columna en New Form entonces usa:
$columnName.ShowInNewForm=$false
$columnName.Update()
$listName.Update()
$webUrl.Dispose()
5-Habilitar la búsqueda de contenttypes en el search de Sharepoint 2010
Set-SPEnterpriseSearchMetadataManagedProperty -Identity ContentType -SearchApplication "Search Service Application" -EnabledForScoping $true
6-Habilitar Document Conversion
En el Central Administration se debe activar los siguientes servicios:
- Document Conversions Load Balancer Service: gestiona la disponibilidad de los convertidores de documentos y tiene que ponerse en marcha en primer lugar.
- Document Conversions Launcher Service: pone en marcha la conversión de documentos en unservidor de aplicaciones.
7-Excluir carpetas del antivirus
- %ProgramFiles%\Microsoft Office Servers\14.0\Data
- %ProgramFiles%\Microsoft Office Servers\14.0\Logs
- %ProgramFiles%\Microsoft Office Servers\14.0\Bin
- %ProgramFiles%\Microsoft Office Servers\14.0\Synchronization Service
- %ProgramFiles%\Common Files\Microsoft Shared\Web Server Extensions
- %windir%\Microsoft.NET\Framework\v2.0.xxxx\Temporary ASP.NET Files
- %systemroot%\system32\inetsrv
Algunos archivos que no se deberían analizar:
w3wp.exe, owstimer.exe, mssearch.exe, inetinfo.exe.
En los servidores SQL, no se deberían escanear los archivos .mdf y ldf
8-Test-SPContentDatabase
http://technet.microsoft.com/en-us/library/ff607941.aspx
Verifica por lo siguiente:
- Faltan WebTemplates
- Faltan features
- Orphaned sites
- Falta setup files
- Faltan Webparts
- Faltan Event reveiver assemblies
http://blogs.msdn.com/b/subbu/archive/2012/05/20/fixing-test-spcontentdatabase-warnings.aspx
9-Error: An error occurred during the processing of xxxxx. Code blocks are not allowed in this file.
Sharepoint no permite código de servidor (runat=”server”) que se ejecute en la página indicada. Para que pueda ejecutarlo, debe editar el web.config
<PageParserPaths>
<!—Se permite a un sólo archivo -->
<PageParserPath VirtualPath="/mi pagina.aspx" CompilationMode="Always"AllowServerSideScript="true" />
<!—Se permite de forma global: -->
<PageParserPath VirtualPath="/*" CompilationMode="Always" AllowServerSideScript="true" />
<!—Se permite de forma global dentro de un subsite -->
<PageParserPath VirtualPath="/misitio/*" CompilationMode="Always"AllowServerSideScript="true" />
</PageParserPaths>
En VirtualPath definimos en cual directorio queremos habilitar la propiedad que las páginas puedan interpretar código.
No hay comentarios:
Publicar un comentario