Error para acceder sitio de Primavera

Error: “A new version of JRE has been installed. Your browser needs to be restarted for these changes to take effect. Please click OK to close the browser.”

Solucion:
http://www.cpmsolutions.ca/new+version+jre+has+been+installed….

Enlace importantes a modificaciones de ESVA

Cambiar el tamaño de los discos duros virtuales y extender la carpeta /var
http://www.global-domination.org/forum/viewtopic.php?t=1060

Cambiar la duracion de la cuarentena:
http://www.global-domination.org/forum/viewtopic.php?t=1117

Extend ESVA disks

My notes:

Extend disk within vmware

fdisk disks and change partition identity to 8e (Linux LVM)

lvm pvcreate /dev/sda4 for root
lvm pvcreate /dev/sdb2 for var

lvm vgextend “vg_root” /dev/sda4
lvm vgextend “vg_var” /dev/sdb2

Check size as described in reference

lvm -l xxx /dev/vg_root-lv_root
lvm -l xxx /dev/vg_var/lv_var

reference:
http://wiki.centos.org/TipsAndTricks/ExpandLV

Method in the forum:

http://www.global-domination.org/forum/viewtopic.php?t=1060

Deshabilitar de forma remota el firewall de Windows XP Sp2

Llaves en el registry para los perfiles:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile
\EnableFirewall=0 (DWORD data type)

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile
\EnableFirewall=0 (DWORD data type)

de forma remota, con PsExec:
levantas una sesion en la linea de comandos en maquina remota
PsExec \\yourServerName -u yourUserName cmd.exe
luego se ejecuta el comando:
netsh.exe firewall set opmode mode=disable profile=all

Estos cambios requieren que se reinicie la maquina.

referencias:
http://www.microsoft.com/downloads/details.aspx?familyid=4454e0e1-61fa-447a-bdcd-499f73a637d1&displaylang=en

http://answers.google.com/answers/threadview?id=422503

iptables 10 Minute Firewall

Enlace a una simple muralla de fuego con iptables:

http://www.hackinglinuxexposed.com/articles/20030703.html

Otra que funciona en VPS:

http://wiki.vpslink.com/HOWTO:_Quick_n%27_Dirty_IPTables-Based_Firewall

Actualización de ISA Server 2004 con WSUS Server 3.0 en red interna

En este articulo hay una descripcion sobre una regla que es necesaria para poder que el ISA Server se actualice con el WSUS que está en la red interna.

http://www.isaserver.org/articles/2004su1345.html

Yo tuve que adicionar en las System Policies en la regla:  Allow HTTP from ISA Server to selected computers for Content Download Jobs, agregar la maquina que tiene corriendo el WSUS 3.0, para que no diera errores y pudiera funcionar.

El error que se registraba en WindowsUpdate.log era:

WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0×80190193,

entre otros como:

FATAL: IsUpdateRequired failed with error 0×80244018, y WARNING: Failed to find updates with error code 80244018

Indice de Ciclo de Vida de Productos Microsoft

En el siguiente enlace existe un indice con la información de ciclo de vida de los prouctos de Microsoft:

http://support.microsoft.com/gp/lifeselectindex#A

ESXI en Dell T105

Instalar ESXI en USB como se detalla aqui:

http://www.symantec.com/connect/articles/how-create-your-own-bootable-esx-3i-usb-stick

Para administrar:

http://www.petri.co.il/5_ways_to_adminster_esx_server.htm

Comentarios de porque no funciona el sistema de almacenamiento que esta presente en la T105 y porque no instala directamente el ESXI desde el CDRom o imagen ISO:

http://communities.vmware.com/thread/202394

http://communities.vmware.com/message/1240340#1240340

Docs online:

http://www.vmware.com/support/pubs/vi_pages/vi_pubs_35u2_3i_i.html

http://pubs.vmware.com/vi3i_i35u2/wwhelp/wwhimpl/js/html/wwhelp.htm

Recursos:

http://www.vm-help.com/index.html

Renovar certificados auto-firmados en Exchange 2007

Los certificados auto-firmados de Exchange solo duran un año.  Para renovar hay que abrir la consola de administracion de Exchange y usar el cmdlet:

New-ExchangeCertificate

Para un listado de los certificados que estan en el servidor:

Get-ExchangeCertificate | List

Verificar los servicios para los cuales está asociado el certificado.  Para que funcione el OWA, se debe tener el certificado instalado para servicio IIS:

Enable-ExchangeCertificate -Thumbprint ####################### -Service IIS

donde el numero ####… corresponde al Thumbprint del nuevo certificado.

Referencias:

http://www.exchangeinbox.com/article.aspx?i=114

http://exchangepedia.com/blog/2008/01/exchange-server-2007-renewing-self.html

En TechNet:
http://technet.microsoft.com/en-us/library/bb851554.aspx

Hacer backup de buzones de Exchange 2007 a archivos PST

Individualmente:

Export-Mailbox –Identity ‘alias’ –PSTFolderPath <ruta a donde se debe crear el archivo PST de la forma c:\PSTs\alias.pst>

Por Base de datos:

Get-Mailbox –Database <nombre de la base de datos> | Export-Mailbox –PSTFolderPath c:\PSTs

Por Unidad Organizacional:

Get-Mailbox -OrganizationaUnit <nombre de la  UO> | Export-Mailbox -PSTFolderPath c:\PSTs

Esto se debe hacer desde una maquina Windows XP o Vista con las herramientas de administracion de Exchange instalada y Outlook 2003 o superior.

Referencias:

http://www.msexchange.org/articles_tutorials/exchange-server-2007…

http://msexchangeteam.com/archive/2006/11/28/431669.aspx