• Home
  • Cisco
  • Exchange
  • Linux
  • Navision
  • Network
  • Virtualization
  • Windows
  • About
  •  

    Extend the 30 days grace period – Windows Vista

    August 22nd, 2009

    You can extend the default 30 days grace period op to 120 days with this command:
    slmgr /rearm
    Then restart.

    Works in Windows 7


    ESVA – Change SSL certificate

    August 19th, 2009

    Enter this folder:
    /etc/pki/tls/certs

    openssl genrsa -des3 -out “YOUR-DOMAIN”.key 1024
    openssl genrsa -out “YOUR-DOMAIN”.key 1024
    openssl req -new -key “YOUR-DOMAIN”.key -out “YOUR-DOMAIN”.csr

    openssl req -noout -text -in “YOUR-DOMAIN”.csr
    cat “YOUR-DOMAIN”.csr
    Make a SSL request

    copy the response to a “YOUR-DOMAIN”.crt

    Edit this file:
    /etc/httpd/conf.d/ssl.conf

    Edit these two lines:
    SSLCertificateFile /etc/pki/tls/certs/”YOUR-DOMAIN”.crt
    SSLCertificateKeyFile /etc/pki/tls/certs/”YOUR-DOMAIN”.key

    Restart apache


    4.7.1 smtp Greylistet in 5 min please try again later – Exchange 2003 SP2

    August 6th, 2009

    Greylisting is an anti-spam measure.
    When a new server connects for the first time, the greylisting server sends a SMTP protocol message that says: “Graylistet in 5 min please try again later”.
    The wait time can be different, but usually 5 min.

    The problem is exchange 2003 (with SP2) by deafult only waits for 1 min.
    That has to be changed.

    HKLM\System\CurrentControlSet\Services\SMTPSvc
    Create a new DWORD value GlitchRetrySeconds

    Change the Base to Decimal
    Set 360 for 6 min.

    Restart the SMTP service.