viernes, 23 de octubre de 2009

Configurar Exchange 2007 para permitir "relay" de un server de mensajeria interno

  1. Crear un conector Tipo "Custom" . Si tenemos diferentes direcciones IP en el server de Exchange 2007 que estén a la escucha de la recepción de sesiones de correo establecer cual de ellas va a servir a nuestro conector dentro de la opcion de Local Network settings. Capturar la dirección IP del server que queremos permitir el Relay dentro de remote network settings y seleccionar "new" para crear el conector.
  2. Editar las propiedades del conector recien creado, la pestaña de autenticación la dejamos como esta y modificamos la pestaña de permission group para habilitar "anonymous users".
  3. Por último para hacer efectivo el permiso de relay ejecutar el siguiente comando dentro del Shell de Exchange 2007 (EMS) [donde dice "Receive Connector Name" cambiarlo por el nombre del conector creado en el paso 1 y señalizarlo entre comillas " "si el nombre contiene algún espacio en blanco.

Get-ReceiveConnector "Receive Connector Name" Add-ADPermission -User "NT AUTHORITY\ANONYMOUS LOGON" -ExtendedRights "MS-Exch-SMTP-Accept-Any-Recipient".

martes, 13 de octubre de 2009

Configuring IIS to Run 32-bit ASP.NET Applications on 64-bit Windows

Applies To: Windows Server 2003, Windows Server 2003 R2, Windows Server 2003 with SP1

If you intend to run 32-bit ASP.NET applications on 64-bit Windows, you must configure IIS to create 32-bit worker processes. For more information about running 32-bit applications on 64-bit Windows, see Running 32-bit Applications on 64-bit Windows.

IIS cannot run 32-bit and 64-bit applications concurrently on the same server.

To enable IIS 6.0 to run 32-bit ASP.NET applications on 64-bit Windows
Open a command prompt and navigate to the %systemdrive%\Inetpub\AdminScripts directory.

Type the following command:

cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 true

Press ENTER.

Download and install the Microsoft .NET Framework Version 1.1 Redistributable Package.

lunes, 10 de agosto de 2009

Cambia contraseña olvidada de usuario SA de SQL2005

Escenario: No recuerdo la contraseña del usuario SA de SQL, mi usuario administrador local no tiene todos los permisos (le falta sysadmin). La autenticación está habilitada en modo mixto.



Solución:




  • Iniciar sesion al equipo de SQL server con un usuario administrador local.


  • Inicial SQL en modo de usuario único. (SQL Server in Single User Mode).


  • Abrir SQL Configuration Manager -> Propiedades de la instanacia que vamos a modificar->Pestaña advance->Parametros de inicio (startup parameters) agregar -m; al inicio de la linea. Reiniciar el servicio de la instancia.








  • Abrir SQL Server Management Studio(con cuenta de administrador local de windows)->Security->Logins->Crear un usuario o utilizar la cuenta built-in administrators-> en las propiedades->Server Roles-> Asignar el role de sysadmin.





  • Despues de eso puedes iniciar sesion a SQL con la cuenta que acabas de asignar el rol y cambiar la contraseña de SA.
  • Despues de esto volver a abrir SQL Configuration Manager para remover el parametro -m; en las propiedades de inicio del servicio y reiniciar nuevamente este.















lunes, 18 de mayo de 2009

Cambiar "product Key" de office 2007.

Para los casos que sea necesario cambiar o acualizar el "product Key" de tu licencia de 2007 he aqui el procedimiento.

  1. Cierra las aplicaciones de Office 2007
  2. Selecciona inicio, teclea regedit en el recuadro y selecciona la opcion OK.
  3. Localiza la llave : HKEY_LOCAL_MACHINE\Software\Microsoft\Office\12.0\
  4. Dentro de ella una sub llave como : {91120000-0011-0000-0000-0000000FF1CE}
  5. Identifica dentro de la llave la version de office que tienes y ubica las siguientes entradas: DigitalProductID / ProductID ; Elimina dichas entradas.
  6. Cierra el editor de registro.
  7. Abra alguna aplicacion de office 2007, te va a pedir el nuevo "product key", teclealo y selecciona la opcion continuar y despues la opcion de instalar para actulizar los valores.
  8. Cierra la apliacion y vuelve a entrar para registrar dicha licencia.

martes, 12 de mayo de 2009

Regular Expressions in Transport Rules (Exchange 2007)

Para el examen de certificacion de EXC07 me di a la tarea aclarar la duda sobre el manejo de reglas para administrar correos y contenido de correos tanto internos como externos.


En estas reglas se utilizan expresiones regulares para crear una platilla para por ejemplo bloquear que ciertos numero de cuenta con un formato en especifico pero con informacion variable no salga de la empresa.


He aqui un poco de informacion y la tabla de dichas expresiones.



What Are Regular Expressions?

First, you must understand what a simple expression is. A simple expression represents a specific value that you want to match with a condition or exception. A piece of data in an e-mail message must exactly match a simple expression to satisfy a condition or exception in transport rules.


A regular expression is a concise and flexible notation for finding patterns of text in a message. The notation consists of two basic character types: literal (normal) text characters, which indicate text that must exist in the target string, and metacharacters, which indicate or control how the text can vary in the target string.

Pattern string Description
\S The \S pattern string matches any single character that is not a space.
\s The \s pattern string matches any single white-space character.
\D The \D pattern string matches any non-numeric digit.
\d The \d pattern string matches any single numeric digit.
\w The \w pattern string matches any single Unicode character categorized as a letter or decimal digit.
The pipe ( ) character performs an OR function.
* The wildcard ( * ) character matches zero or more instances of the previous character. For example, ab*c matches the following strings: ac, abc, abbbbc.
( ) Parentheses act as grouping delimiters. For example, a(bc)* matches the following strings: a, abc, abcbc, abcbcbc, and so on.
\ The backslash ( \ ) is the escape character that is used together with a special character. Special characters are the following characters that are used in pattern strings:
• Backslash: \
• Pipe:
• Asterisk: *
• Opening parenthesis: (
• Closing parenthesis: )
• Caret: ^
• Dollar: $
For example, if you want to match a string that contains (525), you would type \(525\).
\\ Two backslashes are used when you want the backslash character to be recognized as a backslash and not as an escape character. For example, if you want to match a string that contains \d, you would type \\d.
^ The caret ( ^ ) character indicates that the pattern string that follows the caret must exist at the start of the text string that is being matched. For example, ^fred@contoso matches fred@contoso.com and fred@contoso.co.uk but not alfred@contoso.com.
This character can also be used with the dollar ( $ ) character to specify an exact string to match. For example, ^kim@contoso.com$ matches only kim@contoso.com and does not match anything else, such as kim@contoso.com.au.
$ The dollar ( $ ) character indicates that the preceding pattern string must exist at the end of the text string that is being matched. For example, contoso.com$ matches adam@contoso.com and kim@research.contoso.com, but does not match kim@contoso.com.au.
This character can also be used with the caret ( ^ ) character to specify an exact string to match. For example, ^kim@contoso.com$ matches only kim@contoso.com and does not match anything else, such as chris@sales.contoso.com.

Exchange 2007 ebook free and legal

Ya lo he descargado, este es un excelente compilacion de varias publicaciones de Sybex, es gratuito y la informacion es bastante clara y concisa.

10 Full-Length Chapters • 350 Pages of “Must-Know” Information

http://www.simple-talk.com/exchange/

He aqui una descripcion del contenido:

Mastering Exchange Server 2007
Barry Gerber, Jim McBee
Chapter 2: Exchange Server Architecture
Chapter 6: Scaling Upward and Outward

Exchange Server 2007 Infrastructure Design: A Service-Oriented Approach
David W. Tschanz
Chapter 4: Applying Planning Principles to Exchange Sever 2007

Exchange Server 2007 Implementation & Administration
Jim McBee, Benjamin Craig
Chapter 2: Exchange Server Administration
Chapter 4: Installing Exchange Server 2007
Chapter 12: Sizing Storage Groups and Databases

MCITP: Microsoft Exchange Server 2007 Messaging, Designand Deployment Study Guide (Exams 70-237 & 70-238)
Rawlinson Rivera
Chapter 5: Defining Policies and Security Procedures
Chapter 10: Planning a Backup and Recovery Solution for Exchange Server 2007
Chapter 15: Planning Exchange Server 2007 Security

MCTS: Microsoft Exchange Server 2007 ConfigurationStudy Guide (Exam 70-236)
Will Schmied, Kevin Miller
Chapter 10: Creating, Managing Highly Available Exchange Server Solutions

Sender ID Framework SPF Record Wizard

Este es un link excelente para la generacion del registro SPF para la validacion del envio de correo.

http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/

Proceso de validacion de correo con herramientas Antispam en Exchange 2007

Este es un excelente documento que explica el procedimiento que realiza exchange 2007 valiendose de sus herramientas antispam.

Es un poco largo, solo incluyo la imagen general del procedimiento y la liga donde esta la explicacion detallada.

Con este documento aprendi a dar de alta una lista como spamhaus y utilizarla como filtro de correo no deseado.

Message Hygiene in Exchange Server 2007


http://www.simple-talk.com/content/article.aspx?article=524


Como establecer la unidad de inicio en "C" cuando ha sido cambiada.

Problema viejito pero en esta semana lo vi en dos casos en XP.

Antes pasaba mucho en 2000 cuando colocabas un disco como esclavo que tenia clon o copia con una particion activa de Win98 o Win2000. Al desconectar dicho disco y tratar de entrar a tu nueva instalacion te encontrabas que no podias iniciar sesion ya que la unidad habia cambiado a otra diferente de "C".

Hay dos soluciones para este problema:

  1. Si cuentas aun con el disco que pusiste como esclavo, conectalo nuevamente y sigue el siguiente procedimiento:
  • Make a full system backup of the computer and system state.
  • Log on as an Administrator.
  • Start Regedt32.exe.
  • Go to the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
  • Click MountedDevices.
  • On the Security menu, click Permissions.
  • Verify that Administrators have full control. Change this back when you are finished with these steps.
  • Quit Regedt32.exe, and then start Regedit.exe.
  • Locate the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
  • Find the drive letter you want to change to (new). Look for "\DosDevices\C:".
    Right-click \DosDevices\C:, and then click Rename.

Note You must use Regedit instead of Regedt32 to rename this registry key.

  • Rename it to an unused drive letter "\DosDevices\Z:".This frees up drive letter C.
  • Find the drive letter you want changed. Look for "\DosDevices\D:".
  • Right-click \DosDevices\D:, and then click Rename.
  • Rename it to the appropriate (new) drive letter "\DosDevices\C:".
  • Click the value for \DosDevices\Z:, click Rename, and then name it back to "\DosDevices\D:".
  • Quit Regedit, and then start Regedt32.
  • Change the permissions back to the previous setting for Administrators (this should probably be Read Only).
  • Restart the computer.

http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q223188

2.- Si no cuentas con el disco donde estaba el respaldo el problema se soluciona realizando una reparacion del S.O.

jueves, 9 de abril de 2009

jueves, 2 de abril de 2009

Signo de exclamación al instalar scanner en XP

El problema es :

Producto : Creo que cualquier escaner solo intente con un hp scanjet 4670 y un hp multifuncional M1522.

Al terminar de instalar el driver dentro de administrador de dispositivos despliega el escaner con un signo de exclamacion indicando que el driver no fue instalado correctamente con el codigo de error 39.

Solucion:
*Respalda la siguiente llave del registro
{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}
que se encuentra en:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\
---> Selecciona la llave -> boton derecho->exportar y salvala en el escritorio
se guarda con extension .reg
*Borra la llave del registro de windows
{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}
* Instalas nuevamente el driver del escaner.
*instalanuevamente la llave respaldada dando dos click sobre ella y aceptando la pantalla de aviso que se presenta.

referecia:
http://www.computingsuccesssecrets.com/computer-repair/cant-install-camera-nor-scanner-device-drivers/

jueves, 5 de marzo de 2009

Como deinstalar SQL Server 2005 Embedded Edition

Esta duda me surgió al estar trabajando con Sharepoint services 3.0.







Antecedentes:



Al instalar Sharepoint services, si utilizas la configuración por default, te instala como motor de base de datos SQL Server 2005 Embedded Edition.




El problema:


Al desinstalar el producto Sharepoint desde control panel no remueve de forma automatica dicha instalación de la base de datos. Por lo que si quieres instalar nuevamente Sharepoint services te genera problemas.



La solucion:




  1. Localiza la siguiente llave en el registro de windows (inicio->ejecutar->regedit):


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall



2. En el panel izquierdo navega en cada una de las GUID que te despliega hasta que de lado derecho en "display name" despliege SQL Server 2005 Embedded Edition





3. Localizar la llave llamada uninstall string y copiar el contenido de la llave.

4.- Pegar en una hoja de notepad y agregar al final el valor CALLERID=OCSETUP.EXE, quedando un ejemplo como sigue:

MsiExec.exe /X{BDD79957-5801-4A2D-B09E-852E7FA64D01} CALLERID=OCSETUP.EXE

5.- Copiar esta linea completa, abrir una pantalla de comando (cmd), pegar la linea y ejecutarla.

Se debe de abrir una pantalla de desinstalación donde te pide confirma el remover SQL Server 2005 Embedded Edition


El documento lo tomé de este sitio, lo utilicé y funcionó.

http://blog.jemm.net/2007/08/06/how-to-uninstall-sql-server-2005-embedded-edition/

sábado, 7 de febrero de 2009

Trabajando con un poco de Cluster para SQL

Proyecto:

Simulación de un SQL 2005 Clustering.

Principal impedimento : contar con un SAN o algo parecido para simular almacenamiento compartido.

La primera opción buena que localice es utilizar la herramienta llamada iSCSI SAN de la firma StarWind. Este producto utiliza iscsi para simular almacenamiento externo sin la implementacion de FC o SCSI.

http://www.starwindsoftware.com/

La probé, es una buena herramienta y efectivamente en los dos nodos donde voy a implementar SQL clustering puedo ver el almacenamiento compartido.

Incluyo un comando que me sirvio para eliminar un nodo de cluster "basura" que tenia en los servidores.

Ejecutarlo en ms-dos

c:\cluster node /forcecleanup

viernes, 30 de enero de 2009

Servicios Exchange07 no levantan despues de SIFMSFMES

# 1 A Reir un poco del nombre: SIFMSFMES

Symantec Information Foundation Mail Security For Microsoft Exchange Server

#2 Ahora si.. el problema:

Los servicios de Exchange no levantan despues de la instalación y/o desinstalación de el producto antes mencionado.

Este es el status de los servicios:
Microsoft Echange Active Direcory Topology Service Stop
Microsoft Echange Anti-spam Update Stop
Microsoft Echange EdgeSync Stop
Microsoft Echange File Distibution Stop
Microsoft Echange Information Store Stop
Microsoft Echange Mailbox Assistants Stop
Microsoft Echange Replication Service Stop
Microsoft Echange Search Indexer Stop
Microsoft Echange Service Host Stop
Microsoft Echange System Attendant (just says "starting")
Microsoft Echange Transport Stop
Microsoft Echange Transport Log Search Stop

En el EventViewer encontramos el error:
The Microsoft Exchange Active Directory Topology Service service terminated with service-specific error 2147942414 (0x8007000E).

La solucion es:

  • Ubicar la siguiente llave en el registro de windows (Start - Run - regedit)
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Eventlog\Application
  • Ubicar la sub llave :

CustomSD - Hay que eliminarla seleccionandola con el botón derecho del mouse y eliminar

  • Reiniciar el servidor.

Y esta justificada por el documento:

http://support.microsoft.com/kb/954204/en-us

Agregar Disclaimers en exchange 2003 y 2007

http://searchexchange.techtarget.com/generic/0,295582,sid43_gci1322354,00.html?track=NL-362&ad=684369&asrc=EM_NLT_5623531&uid=6145039


How to set up email disclaimers on a single, back-end Exchange 2003 server Learn how to configure a single, back-end Exchange 2003 server environment, like Windows Small Business Server, to add disclaimers to outbound Microsoft Outlook email messages. You'll also discover two inexpensive third-party add-on options for producing disclaimers and digital signatures on Exchange email.
How to use Exchange Server 2007 transport rules to add a disclaimer Get step-by-step instructions on how to add a disclaimer your company's outgoing email using Exchange Server 2007 transport rules and how to set up exceptions for certain users.

EXPERT ADVICE------------------------------------------------------------------------------

How is adding disclaimers in Exchange 2003 different from Exchange 5.5? The process for adding email disclaimers in Exchange Server 2003 email is different from adding them to Exchange Server 5.5 email. Learn more about these changes here.
Adding disclaimers to outgoing SMTP messages in Exchange 2003 Exchange Server is not user-friendly when dealing with global disclaimers. Microsoft recommends that you run a script on a separate, front-end Exchange server. Get detailed instructions on how to add email disclaimers to a front-end Exchange setup. You'll also discover a workaround for adding disclaimers to outgoing SMTP messages on back-end servers such as Windows SBS/Exchange 2003.
Is there a registry hack to add disclaimers in Exchange 2003? Discover whether a registry hack exists to add a disclaimer to all outgoing email in Exchange 2003, and read about how to add a disclaimer template to an Outlook profile to customize email disclaimers within an organization.

TOOLS AND RESOURCES---------------------------------------------------------------------

Exclaimer: Add disclaimers and signatures to outgoing Exchange email A common gripe about Exchange Server is that it doesn't provide an easy way to add disclaimers or footers to outgoing email. The best way to handle this is through a third-party tool like Exclaimer.
Adolsign: Create AD-aware Microsoft Outlook signature files Adolsign (short for Active Directory Outlook Signature) is a third-party utility that allows you to automatically generate and populate an Outlook signature file using Active Directory information.
Email disclaimer tools for Exchange Server This collection of third-party tools will add signatures or disclaimers to your outgoing Exchange Server email.
How to use a VBScript to add a disclaimer to outgoing SMTP messages This Visual Basic script creates an SMTP transport event sink to add a disclaimer to outgoing SMTP messages in both Exchange Server 2003 and Exchange 2000 Server.

jueves, 29 de enero de 2009

Link a sitios interesantes de Tips para Exchange


  • Sintaxis de comandos para Exchange Management Shell de Exchange 2007.

Toca los siguientes topicos y necesitas registrarte en el sitio para revisarlos.


http://searchexchange.techtarget.com/generic/0,295582,sid43_gci1311015,00.html#


Part 1: How to use the Exchange Management Shell command syntax


Part 2: How to use the Exchange Management Shell Filter command


Part 3: Control query results with the EMS Format command


Part 4: How to test Exchange Management Shell commands



  • Los 10 Tips Mas "shiakas" de Exchange en el 2008

http://searchexchange.techtarget.com/generic/1,295582,sid43_gci1341681,00.html?track=NL-359&ad=683530&asrc=EM_NLT_5567006&uid=6145039



Grant or deny permissions to access a user's Exchange 2007 mailboxNeed to access another user's Exchange 2007 mailbox? The simplest way would involve sharing their login credentials, but this presents far too great a security risk. Instead learn how to grant or deny permissions to access a user's mailbox using the Exchange Management Shell (EMS), along with how to use EMS to monitor those permissions.
#2

Enable incoming and outgoing email in Microsoft SharePoint Server 2007Enabling incoming and outgoing email within Microsoft Office SharePoint Server (MOSS) 2007 allows users more connectivity with Microsoft Outlook and, thus, more productivity. In this tip, you'll learn how to enable incoming and outgoing email in MOSS 2007 in Exchange and non-Microsoft Exchange Server environments.
#3

Manage Exchange 2007 public folders from Exchange Management ConsoleUpon release, Microsoft Exchange Server 2007 was without key public folder management features. However, with the release of Microsoft Exchange Server 2007 SP1, that has changed. After downloading and installing SP1, discover how to add and use public folder management functionality in the Exchange Management Console.
#4

How to back up and restore Exchange data with recovery storage groupsAll Exchange administrators need to consider a data recovery procedure for their servers, in case of an unexpected disaster or the accidental deletion of important emails. This tip offers a comprehensive option. Learn how to back up Exchange data to recovery storage groups (RSG) and restore data from an RSG to a live information store using ExMerge or Exchange System Manager.
#5

Migrating resource mailboxes from Exchange 2003 to Exchange 2007If you've upgraded from Exchange Server 2003 to Exchange Server 2007, you'll be pleased to know you won't have to start from scratch. Learn how to migrate and convert Exchange 2003 resource mailboxes to Exchange 2007 room or equipment mailboxes using the Exchange Management Shell (EMS).
#6

Remove Exchange 2007 public folder stores from a Mailbox Server roleIf you are attempting to uninstall the Mailbox Server role after installing Exchange Server 2007 SP1, you will find a bug exists that prohibits removing a Mailbox Server role if it contains public folder stores. This tip contains a step-by-step process to remove these public folder stores, including one that involves using ADSI Edit to change an Active Directory database.
#7

Use Performance Monitor to detect Exchange 2003 message queue problemsCorrupt messages can exist in even the most properly functioning Exchange Server 2003 system, causing mail flow issues and performance slowdowns. To confront these issues head-on, discover how to use the Performance Monitor tool in Exchange Server 2003 to set SMTP queue email message threshold values and prevent mail flow issues.
#8

Exchange 2007 memory and hardware configuration best practicesA fact that surprises some people is that 32 GB is the most cost-effective memory configuration for Exchange Server 2007. Read why and get more memory and hardware configuration best practices for a 64-bit Exchange Server 2007 installation.
#9

Exchange 2007 prerequisites and custom server role installationWhen upgrading to Exchange Server 2007, knowing the step-by-step process beforehand will make your life considerably easier. Learn about Microsoft Exchange 2007 migration and server role prerequisites, and learn how to perform a custom server role installation.
#10

Create a global Safe Senders List in Exchange 2007 to filter spamChanges in the newest releases of Microsoft Exchange Server and Microsoft Outlook make dealing with spam even more manageable. Find out how to create a global, aggregate Safe Senders List in Exchange Server 2007 and Microsoft Outlook 2007 to manage spam and junk email filtering.


Herramientas para remover virus Conficker / Downadup

Primero un poco de historia:

Este virus de propaga en base a una vulnerabilidad en el Sistema Operativo

Para abreviar la vulnerabilidad afecta los S.O. desde Windows 2000 hasta 2008 para server en sus diferentes "presentaciones" y Windows 2000 hasta vista.

El link donde puedes descargar los parches correspondientes :
http://www.securityfocus.com/bid/31874/solution

De las cosas interesantes que hace es buscar en la red los equipos con la misma vulnerabilidad e infectarlos, utilizar una lista de contraseñas bastante comunes para accesar a los equipos que no con restricciones y bloquearte el acceso a sitios de seguridad como microsoft, symantec,etc.

Procedimiento recomendado:
  1. Descarga el parche correspondiente par tu S.O., así como las herramientas para remover la infección.
  2. Instala el parche.
  3. En los equipos como Windows XP / Vista que traen la "cualidad" de Restauración del sistema, hay que deshabilitarlo.
  4. Reinicia en modo a prueba de fallos.
  5. Ejecutar las herramientas de limpieza:
  • CCleaner para eliminacion de archivos temporales y que las revisiones sean mas rapidas

http://www.ccleaner.com/download/downloading

  • Microsoft Malicious software removal tool

http://www.microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

  • symantec removal tool

http://www.symantec.com/content/en/us/global/removal_tool/threat_writeups/FixDownadup.exe

  • bit defender removal tool

http://www.bitdefender.com/VIRUS-1000462-en--Win32.Worm.Downadup.Gen.html

  • F-Secure Removal tool

http://www.f-secure.com/v-descs/worm_w32_downadup_gen.shtml

Por último reinicias, vuelves a aplicar el parche de windows. En este momento ya vas a poder accesar a los sitios de seguridad, de tal forma que busca las actulizaciones pendientes de windows.

viernes, 23 de enero de 2009

herramienta Gratis para crear PDF´s desde tus aplicaciones


remover virus en messenger MSN (Frances)

http://www.infospyware.eu/clean-virus-msn-v-165.html

www.viruskeeper.com/fr/cleanvirusmsn.zip

How to Remove the First Exchange 2007 Server in a Coexistence Scenario

To remove the first Exchange 2007 server in a coexistence scenario

  1. To move the contents of the first Exchange 2007 public folder database to a second Exchange 2007 server in your organization, perform the following steps:
  • If you do not already have a public folder database on the second Exchange 2007 server in your organization, create one.
  • Move the contents of the first Exchange 2007 server public folder database to the public folder database on the second Exchange 2007 server.

MoveAllReplicas.ps1 -Server Server01 -NewServer Server02

http://technet.microsoft.com/en-us/library/bb331970.aspx

  • Verify that all replicas have moved to the public folder database on the second Exchange 2007 server by using the Get-PublicFolderStatistics cmdlet. For more information, see Get-PublicFolderStatistics.

En Este punto necesitamos esperar un día para que las replicas se completarán.

2.- To modify the routing group connectors between the Exchange 2007 routing group and the Exchange 2003 or Exchange 2000 bridgehead server, run the following commands:

  • Get-RoutingGroupConnector where {$_.SourceTransportServers -like ""} Set-RoutingGroupConnector -SourceTransportServers ""Get-RoutingGroupConnector where {$_.TargetTransportServers -like ""} Set-RoutingGroupConnector -TargetTransportServers

3.-To modify any Send connectors that have the first Exchange 2007 server as the source transport server, run the following commands:

  • Get-SendConnector where {$_.SourceTransportServers -like ""} Set-SendConnector -SourceTransportServers ""

4.-To modify any Foreign connectors that have the first Exchange 2007 server as the source transport server, run the following commands:

  • Get-ForeignConnector where {$_.SourceTransportServers -like ""} Set-ForeignConnector -SourceTransportServers ""

5.-To verify that the connectors have been moved, test mail flow by using the Test-Mailflow cmdlet

6.-Transferir distribution groups:

Exchange Management Console->Recipient Management->distribution groups->Right click in distribution group->properties->advanced->select any server in the organization

7.- Cambiar la compatibilidad de IIS para que no sea compatible con 32 bits, solo 64.

cscript c:\inetpub\adminscripts\adsutil.vbs SET /w3svc/AppPools/Enable32BitAppOnWin64 False

el documento

http://technet.microsoft.com/en-us/library/aa996091.aspx

8.-Remove the Exchange 2007 server by using Add or Remove Programs from Control Panel.

Como cambiar collation feature in SQL 2005

Changing the default collation for an instance of SQL Server 2005 can be a complex operation and involves the following steps:

  • Make sure you have all the information or scripts needed to re-create your user databases and all the objects in them.
  • Export all your data using a tool such as bulk copy.
  • Drop all the user databases.
  • Rebuild the master database specifying the new collation in the SQLCOLLATION property of the setup command. For example:

start /wait setup.exe /qb INSTANCENAME=MSSQLSERVER REINSTALL=SQL_Engine REBUILDDATABASE=1 SAPWD=test SQLCOLLATION=SQL_Latin1_General_CP1_CI_AI

Link de documento
http://msdn.microsoft.com/en-us/library/ms179254(SQL.90).aspx

Link con lista de collation options

http://msdn.microsoft.com/en-us/library/ms144250(SQL.90).aspx

***

Hello Word

Claro no podia faltar esto en el inicio.

Saludos!!