Office 365

What is Modern Collaboration, and how does it impact business?

Modern Collaboration, Collaboration Transformation, Technology Revolution, Technology Transformation; I’m sure you have heard one or more of these terms before. They are very common to talk about in Enterprise IT, even Microsoft’s marketing hits on the Modern Collaboration term quite heavily with their cloud offerings.

You are probably wondering, what does this all mean? How does it affect my business, and how do I get started!? Modern Collaboration is a term that Microsoft has coined for its cloud-first products to drive productivity for knowledge workers. The focus is to shift production from a workplace to a workspace.

How to check Exchange Online Distribution List activity over 30, 60, 90+ days?

All growing and/or large organizations will experience this. We have all of these Distribution Lists, but does anyone even use them or know why they were created 5, 10, 15 years ago? I recently ran into this at work, where we are trying to figure out if we can safely delete specific Distribution Lists. They have members, but most of the members have no idea they are a member, or why they would even need the email address.

As always, I start my investigation into how to do something with a quick Google Search. I stumbled upon a bunch of articles specific to Exchange on-premises, and a few items on how to see usage in the last 10 days, but nothing more. The next issue with the ones I did find for Exchange Online was only going to handle 1000 email messages, more than that, and you have to add additional parameters to the command and page through the command multiple times for more than 5000.

I knew many of these lists most likely have infrequent usage, if any at all, so 10 days wasn’t going to cut it. My resolution to this problem? Scheduled tasks, and time!

Before you can run this script, you need to make sure you install the Exchange Online Management PowerShell Module. The module is on the PowerShell Gallery.

The script itself is pretty straightforward. It would be best if you had a secure way to store your passwords that the script will use for authenticating to Office 365. My example script will only work in interactive mode, and you need to dig a bit into storing credentials securely. I would recommend checking out David Lee’s post “Using saved credentials securely in PowerShell scripts” for more information.

Connect-ExchangeOnline -UserPrincipalName user@example.com

$date = Get-Date

$fullResults = @()
$i = 1
do{
    $trace = Get-MessageTrace -Status expanded -startdate ($date).AddDays(-10) -EndDate ($date) -PageSize 5000 -Page $i| Group-Object recipientaddress | Select-Object name,count
    $fullResults += $trace
    $i++
} until($null -eq $trace)

$fileName = (Get-Date -Format "yyyy.MM.dd") + "_DLUsage.csv"
$fullResults | Export-Csv "C:\Reports$fileName" -NoTypeInformation

All you need to do is update the script to use a securely stored credential and set a scheduled task to run at the same time every 10 days. After however long you want to look at historical data, you import to an Excel spreadsheet and compare!

Long Absence, but I’m back!

It has been nearly 8 months since my last blog post. For that I’d like to apologize, as I really would love to have been posting all of this time; it just hasn’t been realistic for me. Let me recap what has happened in that time.

  • October 2014: Made an offer on my first house
  • November 2014: Moved into my first house
  • December 2014: Holiday madness and still settling in the house
  • January 2015: Working on new Training videos for Pearson
  • February 2015: Still working on the training videos
  • March 2015: Wrapping up training videos for Pearson, trying to have a bit of a life.
  • April 2015: Company I work for was sold, started looking at new career opportunities
  • May 2015: Attended Microsoft Ignite 2015, started a new job!

I started looking at houses around September of last year, and fell in love with one of the houses I looked at. I made an offer on the house and within a months time I was moving it. I wasn’t expecting it to happen so fast, but I am glad it did. I’ve been here since November of last year and it provided a great private recording studio for me!

ShowCover

The new videos I’ve been working on are about to come out! It is a video series focused on helping you pass the 70-346 exam. You can take a look at it for when it will be coming out later this month! On InformIT, or if you have a Safari Books Online Subscription you can see it there.

April 1st was quite an interesting day for me. That is the day that the buy-out of the company I work for was announced. I had been at Apparatus for nearly 4 years, and in all honesty we were like a family. I am still very close with a lot of people at the company and I wish them the best. I just thought that after that announcement was made it was a hint that it was time for me to move on; after-all working in IT at the same company for 4 years is quite amazing for a millennial. My last day at Apparatus was May 1st, and the I left work and headed for Microsoft Ignite 2015.

Microsoft Ignite, was quite an experience – in fact you will be seeing a detailed write-up about that later this week. Let’s just say it is a much bigger event and there are still all of the great opportunities you had available to you at TechEd.

Upon my return from Microsoft Ignite 2015, I started my new job as the Systems Architect at Gaylor Electric, Inc. This is quite a change from what I’ve done for the last 4 years. I will now own my very own infrastructure, and be able to make the decisions on what I think is best for the company and the environment. My first week has been completed and I’ve already put the wheels in motion for some sweeping changes to bring this company to the latest and greatest Microsoft Technologies. I really look forward to the opportunity this is going to give me to go deeper into specific technologies that I’ll be sharing on this blog!

Overall you are going to see me becoming much more social, I am going to be as active as humanly possible on Social Networks and keeping this blog as active as possible. I look forward to feedback and hearing about topics that everyone is interested in hearing more about!