Try our free Certificate Revocation List Check Tool
CRLcheck.exe a free tool to verify digital signatures of executable files. It collects files from known paths on your client,
checks their signature, and checks CRL and OCSP download.

Category: Exchange 2010

Exchange 2007 SP2 Upgrade (2010 Pre Migration) or 2007 Deinstall Error with MSP Rollups

 Exchange 2007 SP2 Upgrade Fehler: Das Produkt mit dem Code 24b2c164-de66-44fe-b468-a46d9d5e6b31 kann nicht entfernt werden. Unknown error (0x663). Fehlercode: 1635. Unknown error (0x663)   For the Rollup in generall * Turn off UAC * In Internet Explorer Advanced Turn of both Certification revoke Things * Install the MSP with LOGFILES     Here is how […]

RUS / Adressrichtlinien setzen in Exchange 2007/2010 mit Powershell

Wie mache ich ein Adressrichtlinie im Exchange 2007/2010 Zur Auswahl in der GUI stehen nur einige Optionen. Leider nicht die Option: Erster Buchstabe Vorname . Nachname @ Domain s.muster@kunde.ch Diese muss man im Powershell machen: new-EmailAddressPolicy -Name ‘kunde.ch’ -IncludedRecipients ‘AllRecipients’ -Priority ‘Lowest’ -EnabledEmailAddressTemplates ‘SMTP:%1g.%s@kunde.ch’ So kann man alle Werte der RUS-Richtlinie ansehen: Get-EmailAddressPolicy -identity “kunde.ch” […]

Powershell Links for Exchange 2007/2010

Hot wo automate a Powershell on Windows Server: http://exchangeshare.wordpress.com/2008/12/08/how-to-schedule-powershell-script-for-an-exchange-task/ Free ActiveRoles Management Shell for Active Directory 32/64-bit from Quest: http://www.quest.com/powershell/activeroles-server.aspxhttp://ss64.com/ps/quest.html How to load the Powershell Plugins into the Shell (As example Exchange and the Quest)   http://technet.microsoft.com/en-us/library/bb963745.aspx Add-PSSnapIn -Name Microsoft.Exchange.Management.PowerShell.Admin,Quest.ActiveRoles.ADManagement http://poshcode.org/2231 Here is how to skip/catch the error if the SNAP in has laready been […]

Exchange Running Powershell from Batch on Server 2008/R2, 32/64BIT

Exchange Running Powershell from Batch on Server 2008/R2 32/64BIT, c:\windows\Sysnative Patch If your recieve the error while running a Powershell from Batch: WARNING: The following errors occurred when loading console D:\ProgramFiles\Microsoft\Exchange Server\bin\exshell.psc1:Cannot load Windows PowerShell snap-in Microsoft.Exchange.Management.PowerShell.Admin because of the following error:No snap-ins have been registered for Windows PowerShell version 2.Command ‘c:\batch\butsch.ps1’ could not be […]

Exchange Powershell Read ALL attributes of Array Get-SendConnector

The regular command does not show ALL fields in an Array. As example here a send Connector from Exchange 2007: [PS] C:\>Get-SendConnector | fl AddressSpaces AddressSpaces : {SMTP:*;100} AddressSpaces : {SMTP:helioa1-klieniken.ch;1, SMTP:z3lz.ch;1, SMTP:seee-spitals.ch;1, SMTP:r33s-e.ch;1, SMTP:kssuri.ch;1, SMTP:                csseb.ch;1, SMTP:stolllenwerksttt.ch;1, SMTP:*.zur-ros.ch;1, SMTP:*.zuose.ch;1, SMTP:*.zhww.ch;1, SMTP                :*.z3hd.ch;1, SMTP:*.zeegks.ch;1, SMTP:*.wi3nn.ch;1, SMTP:*.waeid.zurich.ch;1, SMTP:*.wa3id.stzh.ch;1, SMTP:*                .viteeodato.ch;1…} [PS] C:\>(Get-SendConnector -Identity 06_HIN_Gateway).AddressSpaces |ft -Autosize […]

Exchange 2010 generate SSL-certficate request

1 Generate the Request in Powershell (Two Lines of code, -path does not work like we used in Exchange 2007) $data = New-ExchangeCertificate -GenerateRequest -SubjectName “c=CH, S=BL, L=Aesch, o=Butsch Informatik, cn=rogue.computerladen.ch” -DomainName rogue.computerladen.ch -PrivateKeyExportable:$True set-content -Path c:\edv\computerladen.ch.req -value $data 2 Send your ISP  the File computerladen.ch.req (textfile). ISP or Comodo, Verisign, Thawtee and order the IIS7, 1024BIT, […]

Exchange 2007 Restrict ActiveSync for only certain modell of phones

Starting with Exchange 2007 SPX you can use the Set-CASMailbox with the ActiveSyncAllowedDeviceIDs parameter to lock down a certiain user to a specific device ID. http://technet.microsoft.com/en-us/library/bb125264(EXCHG.80).aspx Not that it helps you immediately, but Exch 2010 has included automatic quarantining/blocking of devices based on Device Model and Type with ActiveSyncDeviceAccessRule http://howdouc.blogspot.com/2010/09/activesync-device-access-rules-in.html  set-CASMailbox [-ActiveSyncAllowedDeviceIDs <MultiValuedProperty>] [-ActiveSyncDebugLogging <Nullable>] [-ActiveSyncEnabled <$true […]