Ir a contenido


MENSAJE DE BIENVENIDA Foro vínculado con Twitter, más info aquí.

“El secreto para progresar es empezar por algún lugar. El secreto para empezar por algún lugar es fragmentar tus complejas y abrumadoras tareas de tal manera que queden convertidas en pequeñas tareas que puedas realizar y entonces simplemente comenzar por la primera.” - Mark Twain

Alberto Dominguez

Registrado: 31 mar 2010
Offline Última actividad: Hoy, 07:57
-----

Temas que he empezado

NIS Server for UNIX - Maestro y Subordinado

Ayer, 08:12

En Windows los dos roles posibles funcionan igual, simplemente se necesita diferenciar entre maestro y esclavo en caso de que se conecte un dominio NIS de Unix o para los clientes UNIX:

Marca

Master and subordinate (slave) modes


Server for NIS can operate in a master mode or subordinate mode. (If Server for NIS is used in a domain, the master server in the domain must be Server for NIS.) In UNIX, the primary difference between the two is that both subordinate and master servers can read map data, while only the master server can update maps. Additionally, the master Network Information Service (NIS) server provides periodic updates of the maps to subordinate servers.
In Windows with Server for NIS, because the data is stored in Active Directory, both master and subordinate servers share the same replicated Active Directory database. This makes them peers as far as map updates or write access are concerned. Server for NIS in either master mode or subordinate mode will allow updates to Network Information Service (NIS) map data stored in Active Directory. Changes to Active Directory on any of these servers are propagated to other Servers for NIS in the domain by the Active Directory synchronization mechanism.
Although these servers run as peers for data updates, there must still be only one master server as far as the UNIX subordinate servers and UNIX clients are concerned. UNIX subordinate servers will continue to receive map updates from the Server for NIS that is designated as the master server. Similarly, they will continue to send passwd changes only to the master server.

For information about changing a subordinate server to a master server, see Change a subordinate (slave) server to a master server.

http://technet.micro...0(v=ws.10).aspx

En ocasiones cuando se despliega el subordinado no aparece en la consola NIS de Windows (Microsoft Identity Management for UNIX) para subsanar este problema se ha de ejecutar niscnfg.exe (ubicado en %windir%\idmu\setup).

http://social.techne...4-d7ae36037659/

Migracion de Librerias Tipo Wiki de MOSS 2007 a SP2010

14 mayo 2013 - 16:28

Al migrar Librerias de tipo Wiki a SP2010 se genera un error en el menú que muestra las paginas de la misma indicando: Error de Servidor...  Para corregirlo podemos hacerlo desde powershell, simplemente se trata de cambiar una columna oculta a tipo Indexado:


$web = Get-SPWeb <URL del SubSitio>
$lista= $web.Lists["Nombre Lista"]
$columna = $lista.Fields["Modified"]
$columna.Indexed
$columna.Indexed = $true
$columna.Update()
$lista.Update()
$web.Dispose()

Si tenemos la plantilla en Español:

$web = Get-SPWeb <URL del SubSitio>
$lista = $web.Lists["Nombre Lista"]
$columna = $lista.Fields["Modificado"]
$columna.Indexed
$columna.Indexed = $true
$columna.Update()
$lista.Update()
$web.Dispose()

Herramienta para queries con CAML

13 mayo 2013 - 10:48

Dejo link a esta utilidad de Codeplex, que es muy útil para trabajar con queries CAML:

http://spcamlviewer.codeplex.com/

Renombrar Dominio DA

09 mayo 2013 - 09:46

rendom /list


Esto genera un xml que hay que editar con el nuevo nombre de dominio.

rendom /showforest


rendom /upload


rendom /prepare


rendom /execute


Aquí habrá un reinicio...

Luego hay que actualizar las GPOs:

gpfixup /olddns:contoso.com /newdns:utopia.com


gpfixup /oldnb:contoso /newnb:utopia


Finalmente:

rendom /clean


Si en algún momento se ha de parar el renombrado:

rendom /end


Más info: http://www.shariqshe...er-2008-domain/

Tests de Rendimiento Web - Total Time vs Request Time

26 abril 2013 - 08:53

Dejo link donde explica las diferencias:

http://msdn.microsof...y/dd997556.aspx