Create a DNS Entry for Exchange Autodiscover

Exchange

This is a small post how you can create the DNS records for Exchange Autodiscover in the Genotec Hosting Control Panel.

  1. First login to the HCC (Hosting Control Center).
  2. Navigate to Domainnames and choose your domain
  3. (OPTIONAL) If you not already have, create a new A record for your mailserver (for example mail.the-it-crowd.ch)
    A Record
  4. (OPTIONAL) If you not already create a MX record for your domain, create a MX record
    MX record
  5. Create a CNAME for your autodiscover domain. Normally this is pointing to your mailserver. You could also use the allready exisiting mail.the-it-crowd.ch A record. But I would recommend you to create this CNAME.
    CNAME
  6. Create the Autodiscover SRV record
    TYP: SRV HOST: _autodiscover._tcp.the-it-crowd.ch. DATA:
    0 0 443 autodiscover.the-it-crowd.ch.
    SRV

Office 365 and Windows Phone Mango – an awesome team

WindowsPhone7Office365Now I am still working with Office 365. I am still try to test all the features and also the support for mobile devices like the iPhone or Windows Phone 7. As a Windows Phone 7 developer I could get the beta for the next update of Windows Phone 7 called Mango. Now Mango will support Office 365. You can simply add your Office 365 account on your phone and this will connect you to Exchange Online and SharePoint Online.

What is missing in first beta of the Windows Phone 7 Mango update is Lync, but Microsoft is working on that.

Office 365 – Can not receive mails with ownen Mail Domain

office365

After working with some test accounts in Microsoft Office 365 I realized I could not send mails to my own domain. In the Office 365 control panel everything looked right and the domain was active. I also added the mail addresses to the user accounts.

The error I got back was:

Final-Recipient: rfc822;thomas.maurer@thomasmaurer.ch Action: failed Status: 5.4.1 Diagnostic-Code: smtp;550 5.4.1 Relay Access Denied

After creating a support ticket with the Microsoft Office 365 the support called me and checked my account. Now the problem was I already added the domain to another Office 356 account. So the Forefront had the domain added as duplicated domain.

 Office 365 Forefront

 You can check the status of your domains in Forefront by clicking on the Exchange Online Administration (Manage) like on the Overview site. Now you can click

office365admin01

Now on your Exchange Online Management page click on Mail Control on the left site.

office365admin02

On the right site you can click on Configure IP safelisting, perimeter message tracing, and e-mail policies.

office365admin03

Now in the Domain tap you can check if you have a domain entry whichs starts with “duplicated…..”. If you have a entry like that you have to open a support ticket and the Forefront Online Team will remove the entry from your Account and you have to add the Domain again.

By the way this was the first time I used the Microsoft Support for Office 365 and it was a really good experience. Microsoft really offers a great Service here with fast and qualified support.

 

Powershell: How to connect to Office 365 with Powershell

Powershell Header

You can simply manage and administrate Office 365 from your Powershell prompt or with your own Powershell scripts.

office365

Here is how you can connect to Office 365 with Windows PowerShell:

First create a object with your Windows Live Credentials. This command will open a Windows in which you can enter your Windows Live Credentials for your Office365 Accout. In my case tmauer@tmaurer.onmicrosoft.com and my password.

$LiveCred = Get-Credential

You can open a new Session:

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

Now join the session with:

Import-PSSession $Session

To close the Session:

Remove-PSSession $Session

Now if you join the PS session with Enter-PSSession you can now work online and run commands like Get-User. More about working with Powershell and Office 365 in the next posts.

Microsoft Office 365

office365

In the last days I started to work with the Microsoft beta of Office 365. After testing it for a while I think this could be a great solution for small & medium businesses. And its a really hard competitor to Google Apps. There are a lot of advantage which Office 365 has agains Google Apps and I think because it is a Microsoft Solution for a lot of companys this is the better way to go, if they already used Microsoft Products or have a Microsoft enviroment.

  • More options and features instead of  Google Apps, for example in Exchange or Forfront which protects Exchange and SharePoint Online for free.
  • Microsoft Solutions – the most people and companys already use them.
  • Powershell - This is a really cool feature. You can administrate  the whole Office365 online serivce with Windows Powershell.

In the next few weeks I will post some blog post about how to use Office 365 and some Powershell How To posts.