Category: Microsoft Exchange

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 […]

Exchange 2003/2007/2010 Performance Analyse und Auswertung

Butsch Informatik, 2010, Exchange 2003/2007/2010/2013/2016 Performance Analyse Häufig kommt die Aussage, dass der Exchange Server zu langsam ist. Hier einige Eckdaten wie man misst ob ein Exchange 2003/2007/2010 schnell oder langsam ist und eventuelle Fehler in der Hardware/Auslegung aufdeckt. Storage/SAN IBM DS 4700 IOPS (Input/Output Operations Per Second) ist ein Wert/Faktor, welcher Auskunft über die […]

Exchange 2007/2010 is your Server fast or slow?

  Peformance Exchange 2007/2010 Servers, key values http://technet.microsoft.com/en-us/library/bb201689(EXCHG.80).aspx How to tell if an Exchange is slow or fast? TRANSACTION_LOG_DISK: LogicalDisk(*)\Avg. Disk sec/Read < 20ms TRANSACTION_LOG_DISK: LogicalDisk(*)\Avg. Disk sec/Write < 10ms TEMP_DISK: LogicalDisk(*)\Avg. Disk sec/Read < 10ms TEMP_DISK: LogicalDisk(*)\Avg. Disk sec/Write < 10ms MSExchangeIS\RPC Requests < 70 MSExchangeIS\RPC Averaged Latency < 25 MSExchangeIS\RPC Operations/sec MSExchangeIS\RPC Num. […]

Exchange Public Folder Permissions via Powershell

Hinzufügen von Zugriffsberechtigungen auf Öffentliche Ordner-Inhalte für Clientbenutzer Hilfe zu Exchange 2010 http://technet.microsoft.com/de-de/library/aa998834.aspx Get-PublicFolder Exchange 2007-Hilfe http://technet.microsoft.com/de-de/library/aa997615(EXCHG.80).aspx Some samples for German Exchange 2007: Zeigt alle Public Folder an: Get-PublicFolder -recurseZeigt alle Public Folder mit viel Infos an:Get-PublicFolder -recurse | FlGibt dem User m.butsch Vollen Zugriff auf den PF: Add-PublicFolderClientPermission -Identity “\Adressen” -AccessRights PublishingEditor -User m.butsch Remove-PublicFolderClientPermission […]

Good Exchange Links for 2007 / 2010

Can I really use JBOD storage with Exchange 2010? http://blogs.technet.com/b/ucedsg/archive/2010/05/06/can-i-really-use-jbod-storage-with-exchange-2010.aspx   What is new with Exchange 2010 storage? http://blogs.technet.com/b/ucedsg/archive/2009/05/11/what-is-new-with-exchange-2010-storage.aspx   Setting Message Size Limits in Exchange 2010 and Exchange 2007 http://exchangepedia.com/2007/09/exchange-server-2007-setting-message-size-limits.html         http://www.roland-ehle.de/archives/965 http://blogs.technet.com/b/exchange/archive/2009/12/04/3408943.aspx       Exchange 2010 Request Hotfixes to install “before” SP1   Exchange 2010 SP1 FAQ and Known Issues, […]