1-Obtener el tamaño de los sites collections y exportar los resultados a un csv
Get-SPSite -Limit ALL | select title, url, @{label="Size in GB";Expression={$_.usage.storage/1GB}} | Sort-Object -Descending -Property "Size in GB" | Export-CSV C:\sizeSitesCollection.csv
2-Deployar infopath form al Central Administration
Central Admin > General Application Settings > Manage form templates
Test-SPInfoPathFormTemplate -path "c:\solution\FormTest.xsn"
Install-SPInfoPathFormTemplate -path “c:\solution\FormTest.xsn"
Enable-SPInfoPathFormTemplate -identity "FormTest" -site http://siteCollectionURL
Más info: http://technet.microsoft.com/en-us/library/ff607608.aspx
3-El people picker no muestra usuarios del AD
Verifica que las cuentas que configuraste Sharepoint sean usuarios del AD, no cuentas locales.
4-Restringir el people picker a obtener usuarios de sites collections solamente
stsadm -o setproperty –url <web-app-URL> –pn peoplepicker-onlysearchwithinsitecollection –pv yes
Para verificar si esta habilitado o no:
stsadm -o getproperty –url <web-app-URL> –pn peoplepicker-onlysearchwithinsitecollection
http://technet.microsoft.com/en-us/library/cc261988(v=office.12).aspx
5-Detectar la versión de Sharepoint
Ingresar a regedit: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\WSS\InstalledProducts
Si se desea usar PowerShell, se puede usar el siguiente comando: Get
-SPFarm
|
Select
Products
No hay comentarios:
Publicar un comentario