Entradas

Mostrando entradas de enero, 2010

VMware Premia los mejores Scripts para ESXi - VMware Script-O-Mania

Los premios van desde USD 2.500 a USD 500 para el tercer puesto. Comenzo el : 10 de Diciembre de, 2009 Termina el : 15 de Marzo de 2010  Premiacion se anunciara : 31 de Marzo 31 de 2010 Animate, Registrate y pon tu script: http://www.vmware.com/account/customerRegistration.do

Make a Script to Create Multiples Users Using a Template Account in Exchange 2007

Create users can be a very easy task if you use scripts and templates. Now we need: A CSV file NewUsers.csv and following data Name, User principal Name, Organizational Unit and Mailbox database: Name,UPN,OU,edb Ramirez,ramirez@Mydomain.loc,Mydomain.loc/Mydomain/Users,Mailbox database Create a Mailbox Template and configure with parameters that you want, for example: _TemplateComercial Create a script and save it, for example: filename.ps1 Param( [string] $Template, [string] $CSVFile ) $temp=get-mailbox $Template $Pass=convertto-securestring Password123 -asplaintext -force import-csv $CSVFile | foreach-object -process {new-mailbox -name $_.name -userprincipalname $_.UPN -organizationalunit $_.OU -database $_.EDB -password $pass -resetpasswordonnextlogon $true -templateinstance $temp} Save your script in you exchange installation for example: D:\Program Files\Mic

Change Database User ID and Password in VCenter and VirtualCenter

Today applying changes in my database infrastructure, adding complex passwords and security; I was needing a new database user and password for my VMware VCenter Server. In this article of VMware Knowledge Database instruct how make this change: http://kb.vmware.com/kb/1006482

Error When Users Try to Open a AD RMS Protected Document using Office 2003

Symptoms: Starting on December 11, 2009, customers who use Office 2003 will be unable to open Office 2003 documents that are protected with the Active Directory Rights Management Service (AD RMS) or with Rights Management Services (RMS). Customers will also be unable to save Office 2003 documents that are protected with AD RMS/RMS. Error: "Unexpected error occurred. Please try again later or contact your system administrator" Scope: This symptom affects Office 2003 products that are used together with AD RMS/RMS. This includes Word 2003, Excel 2003, PowerPoint 2003, and Outlook 2003. This does not affect the 2007 Microsoft Office system. See: http://support.microsoft.com/kb/978551/en-us Hotfix: http://www.microsoft.com/downloads/details.aspx?FamilyId=A027462D-3399-48C0-9F20-4E296703D89E&displaylang=en

FTP over SSL in IIS 7.5, Windows server 2008 R2 and Filezilla Client 3.3

Imagen
FTP over SSL is named FTPS, FTP-SSL and FTP/S is a new feature of Microsoft FTP for IIS 7.0  and 7.5 its freshly introduced support for SSL/TLS. Testing this new feature I configured my FTP site with SSL:  In advanced settings: When I try to open my FTP site. Ohhhh, suprise Microsoft not have a FTPS client, Intenet Explorer 7 and 8 don't work Error: 534 Policy requires SSL. Now then I open this FTP site with Filezilla Client 3.3 connecting with FTPS using Explicit SSL/TLS and it work sucessfully. Esta configuracion y conexion funciona bien tanto en Microsoft FTP 7.0 como en FTP 7.5. Espero les sirva ya que Microsoft aun no posee un cliente FTPS y algunos de nosostros necesitamos asegurar nuestra infraestructura.