If you have a UCC certificate with multiple server names in the SUBJECT ALTERNATIVE NAMES and you want to apply that certificate to more than one server, you cannot do it through the Exchange Management Console GUI. If you try to IMPORT the certificate that was created from a Certificate Request made on a different server, using the Exchange Management Console, the certificate WILL import without error but it will not appear in the EMC…
Category: Microsoft Exchange Server
Exchange 2003, 2007, 2010, 2013, 2016 how to and demos
If you have an Office365 account, you likely know that you have 50GB worth of storage space. However, it is not obvious how much of that 50GB limit you are currently using. Questions like: ‘How large is all of my email’, ‘How much space do I have left in my Office365 email?’ and ‘What is my mailbox usage on Office365?’ need answers. There are four ready ways to determine the size of the mailbox in Office365:…
If you have ever been asked who has a particular email alias on an Exchange server, you know you in for trouble because the answer is not readily apparent in the Exchange Management Console. The easiest way I know to find alias names in Exchange is to use the PowerShell Script below to export all the alias’ to a CSV: Launch the Exchange Management Shell Copy and Paste the following script into the shell: Get-Mailbox…
If you are like most companies, when staff leave you delete their email accounts but you likely don’t give much thought to the Distribution Lists that they used. After a few years you can have quite a few unused Distribution Lists which does not do anyone good so you should remove them. However, your likely afraid to just dump them based on your intuition that they are unused and so you need some numbers to…
If you are using Exchange Management Shell (PowerShell) and need to change the ActiveSync Policy for people in a specific OU using a wildcard (i.e. you want to effect the ActiveSync policy for all users in the ABCDEFG OU you can use a script like this: Get-Mailbox -ResultSize Unlimited | where {$_.OrganizationalUnit -like “ABCD*” } | Set-CASMailbox -activesyncmailboxpolicy(Get-ActiveSyncMailboxPolicy “<YOUR A.S. POLICY NAME HERE>”).Identity Enjoy. Share This With Your Friends Now:
If you need to apply a particular ActiveSync policy to only a particular Distribution Group you can run (and modify) the following script. # Put members of the Dist Group into a dynamic array $allMembers = Get-DistributionGroupMember -Identity ‘<DISTRIBUTION GROUP NAME HERE>‘ # Loop through each person in the allMembers array foreach ($member in $allMembers) { # Set ActiveSync for each member of the array $member | Set-CASMailbox -ActiveSyncEnabled $true # Set ActiveSync Policy for each member of…
To see the Detailed Properties of an Exchange Send Connector you can use a simple Exchange Management Shell command: Get-SendConnector | list Share This With Your Friends Now:
In a word, no. I have spent several days trying to find a clear answer the to this question in white papers, blogs and even MS Partner Support. I think Microsoft will offer this service in the not so distant future because it just makes sense to. Using the Office 365 Feedback link (below) I posted the following question (which I may never receive a response to). If you want to use Exchange Online as a fail over…
This is an easy one if you pay attention to the details in the error: Summary: 1 item(s). 0 succeeded, 1 failed. Elapsed time: 00:00:00 Dan Tican\IEM/1026121420 CFNetwork/609 Darwin/13.0.0 Failed Error: The ActiveSyncDevice MY DOMAIN/Ian – Users/Dan/ExchangeActiveSyncDevices/iPhone§78D33F828A7549BF95E4FE cannot be found. Click here for help… http://technet.microsoft.com/en-US/library/ms.exch.err.default(EXCHG.141).aspx?v=14.3.123.3&t=exchgf1&e=ms.exch.err.Ex0FBD0C Exchange Management Shell command attempted: Remove-ActiveSyncDevice -Identity MY DOMAIN/Ian – Users/Dan/ExchangeActiveSyncDevices/iPhone§78D33F828A7549BF95E4FEFE Elapsed Time: 00:00:00 The key is the path to the Organizational Unit (OU) in Active Directory. The user in…
This was a frustrating error that, if I had slowed down for 2 minutes, would have been easy for me to figure out what was wrong. The issue was that the Exchange Power Shell – Management Shell cmdlets was not in the location Exchange expected sooooo, I had to run the standard Windows Server Power Shell and load the commands manually: Right click on the standard Windows Power Shell and select RUN AS ADMINISTRATOR paste in…
Well this was a minor annoyance I could have done without. Fortunately the solution is very simple. If you are trying to SHARE a Calendar in Outlook and you receive the dreaded: Calendar sharing is not available with the following entries because of permission settings on your network you have likely typed the recipients email address in or used the address from your cached addresses. That will not work. What…
I recently needed to add 50 new contacts into my Exchange 2007 server and had no intention of completing this task by manually. I am not the greatest PowerShell guy but I knew this would be easy… and it was. Create a file named C:\CONTACTS.CSV file like following Name,DisplayName,EmailAddress,Alias,Title,Company,Department Tom Test,tomtest,ttest@test.com,ttest,CEO,TGS,Surveys John Rotten,JohnRotten,john.rotten@test2.com,ttest,Chief Financial Officer, TGS,Corporate Launch EXCHANGE POWER SHELL and use the following command: import-csv c:\contacts.csv | foreach { new-mailcontact -alias $_.Alias -name $_.displayName…
Last night I ran Windows Update patches on my Exchange 2007 server and now BlackBerry’s can not send or receive email. All services are running and can restart without problem. I can log into Blackberry Admin Service without problem. If this sounds like your problem, then you likely have the same problem I had, an old and now unsupported, CDO 1.2.1 . You can verify this by going to the server, logging in to Windows…
If you want to rule out YOUR mail server and /or mail client as a problem, you can easily send a short message to a server using the following command line: telnet mail.arrrrs.com 25 note: change the mail server to the server you want to CONNECT to. ehlo mail from:anyaddress@adnydomain.com rcpt to:imatthews@arrrrs.com note: the email address must be handled by the server you connected to. data Hi Ian, You are teh very best Ian…