Jan
06
2010
0

HowTo – Customize SSL for exchange 2007

With the client access role in exchange 2007 brought the need to work with and customize ssl for the internal domain activity of the server.  If the ssl is not replaced the Outlook clients will provide an ssl warning every time the app is launched.  To resolve this here is how you can get a custom ssl cert from your local CA.

  • For generating a CSR in exchange 2007 I’ve been using this website tool: https://www.digicert.com/easy-csr/exchange2007.htm.  You can fill out the small form and then copy/paste the command that was generated into your exchange server’s management shell.  If you’re a CLI junky you can reference this bit of code and replace your information in the correct spots:

New-ExchangeCertificate -GenerateRequest -Path c:\exchange_mydomain_com.csr -KeySize 2048 -SubjectName "c=US, s=New York, l=Your City, o=Your Company, ou=Your Department, cn=exchange.mydomain.com" -DomainName exchange, exchange.mydomain.com, autodiscover, autodiscover.mydomain.com -PrivateKeyExportable $True

  • The CSR will be located here:  c:\
  • Use your local Microsoft CA server and import the csr to generate a new ssl certificate.
  • Download the new certificate to the c:\ of your exchange server.
  • Run this command in your exchange management shell to import the certificate.

Import-ExchangeCertificate -path c:\certnew.cer

(where certnew.cer is the location where you downloaded the cer from your CA server)

  • Following the import the the command will output the thumbprint for the ssl.  Use the menu in the top left corner of the exchange management shell (left click once for the menu to appear).  Mark and copy the thumbprint, you need this for the next step.
  • Run this last command to enable the ssl certificate for exchange usage.

Enable-ExchangeCertficate -services IIS, UM, SMTP - thumbprint "paste your thumbprint here"

(If this is just for client access you only need IIS for the service option.)

Written by Tom
Jan
05
2010
0

HowTo – Enable Windows 7 “god mode”

I was browsing zdnet today and found a useful article.  In the new 32 bit version of Windows 7 and previous versions of Vista you can enable a custom control panel anywhere you want and control just about the whole operating system.

Here is the blurb from zdnet:

“Although its name suggests perhaps even grander capabilities, Windows enthusiasts are excited over the discovery of a hidden “GodMode” feature that lets users access all of the operating system’s control panels from within a single folder.

To enter “GodMode,” one need only create a new folder and then rename the folder to the following:

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Users are able to have a single place to do everything from changing the look of the mouse pointer to making a new hard-drive partition.”

http://news.zdnet.com/2100-9595_22-378247.html?tag=trunk;content

Written by Tom

Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes