viernes, 28 de noviembre de 2014

SharePoint 2010: Windows could not start the administration service on local computer.


Related also with: 

Error 1053: The service did not respond to the start or control request in a timely fashion (SharePoint)

Resolution:

Increased the default service time-out
  • Click Start, click Run, type regedit in the Open box, and then click OK.
  • Locate and then select the following registry subkey:
  • HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
  • Right-click Control, point to New, and then click DWORD Value.
  • In the New Value box, type ServicesPipeTimeout, and then press Enter.
  • Right-click ServicesPipeTimeout and then click Modify.
  • Click decimal, type the number of milliseconds that you want to wait until the service times  out, and then click OK.
  • Exit Registry Editor and then restart the computer.
Restarted the server and issue has been resolved.

jueves, 27 de noviembre de 2014

Pantalla negra luego de logueo en servidor (RDP)




Hola,

Luego de horas de busqueda sin resultados positivos, mis canas han dado frutos y he encontrado una solución a mi problema.

Escenario:
  • Conectado a un PC#01 usando RDP
  • Desde la PC#01 me conecto a un servidor llamado SERVER#01 usando Remote Desktop Connection Manager v2.2
Al conectarme al SERVER#01 luego de ingresar los credenciales, recibo una pantalla negra la cual no permite continuar trabajando.


La forma que encontré para solventar dicho problema es el siguiente:
  • Ingresar al servidor con otro usuario
  • Abrir el taskmgr.exe con el usuario que se tiene problemas de logueo
  • Hacer un log off del usuario con problemas.
Listo, ya puedes volver a cargar el perfil y va a fucionar sin problemas

martes, 25 de noviembre de 2014

PowerShell: Finding Creator of List, Finding Date of List Creation



To find list creator:

$web = Get-SPWeb “Name of your site (keep the quotes)”
$list = $web.lists["Name of your list (keep the quotes)"]
$listAuthor = $list.Author
Write-Host $listAuthor

To find list creation date:

$web = Get-SPWeb “Name of your site (keep the quotes)”
$list = $web.lists["Name of your list (keep the quotes)"]
$listCreatedDateTime = $list.Created
$web.Dispose()
$web=$null
Write-Host $listCreatedDateTime

Enjoy it!