Microsoft Exchange
Anything interesting and related to Microsoft Exchange
-
Changing the weather forecast location and temperature unit in Outlook 2013’s Calendar
I’ve installed Office 2013 a few days ago and tonight when opening the calendar I saw a nifty feature at the top showing the current weather forecast (including 2 days in the future) with the minimum and maximum expected temperatures. I needed to change the location and temperature unit as the default was for New York and the temperature unit in Fahrenheit. To be honest I would have thought that Outlook should be able to pick a default city for my time zone but it’s not a big deal. Below is a short video on how to change this if you are running Outlook 2013. (View the video in 1080p for…
-
How to reset IIS folders on an Exchange 2003 server
Sometimes IIS or IIS permissions go corrupt or just leave the planet for different reasons. When you need to delete and recreate these folders do the following… Back up the IIS Metabase on your Exchange Server: Start IIS Manager. Right click the Default Website, choose All Tasks, and click Save Configuration to a File. Now delete the OWA virtual directories: Right click Exadmin and click Delete. When prompted if you are sure click Yes. Now delete the below listed virtual directories: Exchange ExchWeb Microsoft-Server-ActiveSync OMA Public Close the IIS Manager. Open the command prompt. Change to (driveletter:)inetpubadminscripts Type adsutil, and hit Enter. Click Yes when prompted to register CScript as your default host for VBscript and then click…
-
Inbox missing in Outlook when using Exchange Server
We had a user today that advised his Inbox is missing from Outlook. The first few things you need to check and try are as follows: 1. Open Outlook and click on yourname@company.ccc, on the right-click “Customize Outlook Today…” 2. Then click on “Choose Folders” 3. Tick “Inbox” if it has not been ticked. If Inbox shows that it has been ticked go to the step 4. 4. Close Outlook. 5. Click on start, and in “run” or “Search Programs and Files” type outlook.exe /resetfolders 6. Open Outlook. If the Inbox is still not shown the read the next few steps but make sure you only change what the article…
-
How to export the relay list from an Exchange 2003 server
It’s always a good idea to export your relay list regularly in case of server crash or failures. Yes there’s other ways to restore this but if you have a txt document then it’s a lot quicker to import the list to a rebuilt or new server. In order to do this download IPsec.vbs from here. After you have downloaded the package unzip it and then register the exipsec.dll by opening the command prompt and using the syntax “regsvr32 pathtoexipsecurityexipsec.dll” and pressing enter. After registering the dll open the command prompt again and change to the ExIpSecurity folder. Then type “cscript ipsec.vbs -s (servername) -i (instance id like 1 or 2 or 3)…
-
Reporting on OWA for Exchange 2003
I recently received a request to report on OWA for a 2003 Exchange environment. Needless to say without any 3rd party tools you are kind of left in the dark. However, I found the below website that assisted me with pulling some stats from the IIS logs using Log Parser 2.2 and 2 SQL scripts. First browse to this website and follow the instructions. The site will give you 99% of the information you need to pull the reports. There was one issue that they failed to mention though. How do I export the data to CSV??? Here is a screenshot of how the command looks like: (you need to add -o:CSV…
-
Export mailbox permissions on Exchange 2003
I had a request to export mailbox permissions on an Exchange 2003 Exchange server to see who has rights on certain individuals’ mailboxes and what rights these groups and people have on the said mailboxes. I found a tool called ADModify that did the job perfectly. The tool exports the data to xml. Open it with Microsoft Excel and choose “Open as XML Table”. Then use the filters at the top to view what the permissions are and what permissions each object holds on the particular mailbox. The download link to ADModify is here. A very nice tutorial on using the tool to only export mailbox rights can be found here. Note…
-
Windows 2003: The Cluster Service on node ‘Clustername’ cannot be started. The network path was not found.
There are two ways of resolving an issue when you receive the error “Windows 2003: The Cluster Service on node ‘Clustername’ cannot be started. The network path was not found.” when trying to open Cluster Administrator on an Exchange 2003 server running Windows 2003 First try this: From one of the cluster nodes: Click Start, go to Programs, go to Administrative Tools, click on Cluster Administrator. When prompted to connect to a cluster, type a (.) in the Open Connection to Cluster box, and then click Open. (Just bring the offline resources online if nothing has changed on the Network Adapter side of things and skip the next steps) Click the…
-
Unable to Exmerge or getting error (0x8004011d)
If you are unable to exmerge a mailbox on Exchange 2003 or get the error (0x8004011d) try the following: 1.Verify that the user account under which you run the Exchange Mailbox Merge program has the Receive As and Send As security permissions set to Allow for the Mailbox Store. To do this, follow these steps: •Start Exchange System Manager. •Expand Servers and expand the server that you want to run exmerge on and expand the storage group that you want. •Right-click Mailbox Store, and click on Properties. •Click on the Security tab and then click the user account whose permissions you want to verify (this is the account you are running exmerge with).…
-
Export Mailbox sizes per server to csv (Exchange 2003)
If you need a rather quick way to export all the mailbox sizes on a particular server then the below link is for you. Download the script, run it by opening the command prompt and type cscript MSX_GetMailboxSize.vbs thenameoftheserverhostingthemailboxes>filenameyouwanttochoose.csv Remember to add the export location to the above command if you want to save the export to a particular path ie: cscript MSX_GetMailboxSize.vbs servername>e:reportsserver1.csv Open the csv export with Excel after you ran the script. You can then manipulate the contents to the format you need as all mailbox data will be there. Fields exported to csv using this script are: Display Name SizeMB SizeGB Storage Group Store Total Items I used…