So I decided to set up an Office 365 domain

BrightPoint GB

BrightPoint GB

Device Lifecycle Services.

Delivered.

Plan. Market. Customize. Move. Recycle.

More...
Samsung Galaxy S III

Samsung Galaxy S III

Designed For Humans

Inspired By Nature

This sleek and innovative smartphone has the enhanced intelligence to make everyday life easier.

More...
BlackBerry Curve 9320

BlackBerry Curve 9320

Socially Connected

3G capable

Featuring all of the core messaging and social features to keep you connected.

More...
HTC One X

HTC One X

Technology Leader

Quad Core Android 4.0

Perfect for gaming, watching videos and surfing the net

More...
HTC One V

HTC One V

Iconic Design

A great all-rounder

ImageSense technology, Beats Audio, wireless media streaming, cloud storage and more...

More...
ZTE Tania

ZTE Tania

Windows Phone Mango

Fully equipped

Great for business and pleasure

More...
BlackBerry Bold 9790

BlackBerry Bold 9790

BlackBerry OS7

Powerful & Fully Featured

Smooth performance for browsing the web, running apps, working with documents, and enjoying multimedia

More...
HTC Sensation XL

HTC Sensation XL

Feel every beat

With Beats Audio

A multimedia superstar with Beats earphones included.

More...
HTC Titan

HTC Titan

Unlike anything you've ever held before

Office on the move

Windows Phone 7.5 (Mango). With a 4.7-inch screen and big virtual keyboard, the Titan is perfect for both work and play.

More...
HTC Radar

HTC Radar

Real time close

Windows Phone 7.5 (Mango)

Pull all your contacts and social networks together into one place to stay connected with friends and share instantly.

More...
BlackBerry Bold 9900

BlackBerry Bold 9900

Slim yet powerful

Touch and Type in harmony

The Bold 9900 is RIM's thinnest BlackBerry smartphone yet and as lightweight and durable as it is feature-packed.

More...
ZTE Libra

ZTE Libra

Affordable Android

WiFi hotspot, Exchange email, Google Maps and much, much more all at an attractive price.

More...
ZTE MF30/MF60

ZTE MF30/MF60

Portable Internet

USB & WiFi for Windows and Mac

High speed, portable Internet access in your pocket.

More...
Motorola Defy +

Motorola Defy +

Lifeproof

Faster, smarter, richer

Scratch, dust and water-resistant. 1GHz processor, 5MP camera and great pre-loaded apps.

More...
BlackBerry Curve 9380

BlackBerry Curve 9380

BlackBerry OS7

The 1st all-touch Curve

Easily capture and share your favourite moments with family, friends and colleagues.

More...
Samsung Galaxy S2

Samsung Galaxy S2

Faster. Slimmer. Brighter.

Prepare yourself for the Galaxy S II, Samsung's thinnest smartphone.

More...
HTC Sensation XE

HTC Sensation XE

With Beats Audio

Designed to impress

With custom Beats headphones, engineered to deliver extraordinary sound.

More...
ZTE Skate

ZTE Skate

Affordable Android

WiFi hotspot, Exchange email, Google Maps and much, much more all at an attractive price.

More...
HTC Explorer

HTC Explorer

A design that fits your lifestyle

Keep in touch with the people who matter

Jump right into what's most important to you thanks to an improved lockscreen design.

More...
ZTE Tureis

ZTE Tureis

Full Qwerty 2.6-inch touchscreen

Android Gingerbread

Business and social features in a slim package.

More...
Frontpage Slideshow (standalone) | Copyright © 2006-2011 JoomlaWorks Ltd.

Microsoft Office 365

A while ago I set up a Google Apps Premier Edition account to see what was involved, and detailed the process in this article - http://blog.brightpointuk.co.uk/so-i-decided-set-google-premier-edition-...

Now that Microsoft have launched their own hosted Exchange, Lync and Office Web Apps service, I decided to see how easy it was set up my own fictional company on the platform.

Registration

Microsoft Office 365

Registering for a free, 30-day trial is simplicity itself: simply request a trial and enter details of your desired company name, which necessarily needs to be "xxxx.onmicrosoft.com"
Within moments you will have a fully functional Exchange 2010-based 10-user mail and calendaring platform.

Your new domain can be accessed by browsing to https://portal.microsoftonline.com and logging in with the credentials your specified when you registered for the service:

Microsoft Office 365

All administration of your domain via a web-based interface:

Microsoft Office 365

Add your own domain

In order to start using your own domain for email, rather than the "xxxx.onmicrosoft.com" domain provided, you need to run through a short wizard to demonstrate that you have control over the selected domain. You will be prompted to create a spurious MX record for the target, which Microsoft will then query to prove that you have created the record, thereby indicating that you have control over DNS for that domain:

Microsoft Office 365

Once your domain has been verified, you have two choices: Microsoft can provide a hosted DNS service for you automatically with the correct MX records created already, all you need to do is to configure the domain to use Microsoft's DNS servers: "ns1.bdm.microsoftonline.com" and "ns2.bdm.microsoftonline.com":

Microsoft Office 365

You can then manage your DNS records, including adding new entries, directly within your Office365 web administration interface:

Microsoft Office 365

Or, should you prefer to use an alternative DNS provider, here you will see the MX record to use.
You should also create a CNAME alias record for "autodiscover.domain.com" pointing to "autodiscover.outlook.com" - this entry is used by the auto-configuration services of Microsoft Outlook and Exchange ActiveSync clients when they are trying to determine the email settings for your domain automatically.

You can now add email addresses to your user mailboxes as required. If you have not yet added user accounts, bulk import from CSV file is also supported:

Microsoft Office 365

and distribution groups:

Microsoft Office 365

Groups can be set to only receive email from within the organisation or from any source:

Microsoft Office 365

Setting primary SMTP addresses

Although we have added new incoming email addresses for our domain, when sending emails, the provided "xxxx.onmicrosoft.com" domain will still be used.

In order to edit the primary SMTP address for users, this needs to be done via a PowerShell session as it does not seem to be possible to do it via the web administration interface (at the time of writing at any rate).

Launch a Windows PowerShell command prompt (available as standard on Windows 7 / Windows Server 2008, available for download for Windows XP / Server 2003).

Connect to your hosted domain by issuing command:

$LiveCred = Get-Credential

You will be prompted to enter your Office365 administrator username and password, the same details you specified when you registered for the trial.

In order to be able to run scripts, issue the following command:

Set-ExecutionPolicy -ExecutionPolicy unrestricted

Now connect to the Microsoft Exchange container:

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

and connect the session to the local machine:

Import-PSSession $Session

Now connect to the target user mailbox you wish to configure:

$Mailbox = Get-Mailbox -Identity James
$Mailbox.EmailAddresses

Now define the email addresses assigned to the mailbox, with the primary email address being defined by entering "SMTP" in capitals:

Set-Mailbox James -EmailAddresses SMTP:james@joojanta.co.uk,smtp:james@joojanta.onmicrosoft.com

Repeat for other mailboxes you wish to configure.

When complete, disconnect the session:

Remove-PSSession $Session

Mails sent by your users will now appear as coming from your private domain.

You can now optionally change your user's default username to keep things consistent:

Microsoft Office 365

Exchange ActiveSync

Microsoft Office 365

Running on Exchange 2010, your hosted Office 365 platform provides the same Exchange ActiveSync functionality that a locally hosted deployment would offer: access control rules can be defined to quarantine, block or allow devices requesting connectivity to Exchange; devices can have password usage policies enforced on them; and depending on which elements of the Exchange ActiveSync protocol the client devices supports, various hardware and software functionality can be enabled or disabled as defined by the administrator.

Microsoft Office 365

Microsoft Office 365 Microsoft Office 365

When configuring devices for Exchange email, if the device supports autodiscovery, by entering your Office365 email address and password, the device should be able to determine the remaining settings to use automatically. If prompted for a server address, use m.outlook.com
Authentication is done by username (email address) and password, there is no need to enter a domain if entering settings manually.

Microsoft Office 365

Desktop Email Client

If your desktop email client also supports autodiscovery, then setting up the email account is a simple matter of simply entering your email address and password:

Microsoft Office 365

Microsoft Office 365



You can find out more information about Office 365 on the Microsoft web site - http://www.microsoft.com/en-gb/office365/online-software.aspx