If you’re in the tech industry you may find yourself needing to use a specific version of Microsoft Office. Of course if you just install it from the Portal, or use the Office Deployment Tool with its enclosed configurations you’ll end up with the current version.
Fortunately, there is a fairly easy way to install a specific version. You do need to use the Office Deployment Tool – see here for details on that.
I was recently trying to set up some security groups in Office365, and I wanted to add a subset of users to that group. Could I work out how to do it? Well, yes, I could….But it took a while.
I tried the obvious approach of feeding each user to the add-msolgroupuser cmdlet and it just wasn’t having it. Some further google-fu and I worked out that this command doesn’t accept collections….So a different approach was needed.
In effect you create a variable with the users you want, and then feed that list of users to the add-msolgroupuser cmdlet. This worked for me anyway – so let’s have a look at how below. I was working with a group for SharePoint in this instance.
Add your group to a variable
$group = get-msolgroup | where {$_.Displayname -eq ‘SharePoint Users’}
Add your users to a variable
There’s various ways to get your users. In my case it was simply users with a certain domain name so I selected those using:
Obviously change the ’emailaddress@domain.com’ to whatever you’re looking for. You can use wildcards too, so for example DA*@contoso.com would find any alias beginning with DA and @contoso.com
This has been driving me slightly bonkers – on a few of my machines my Visio has not been able to display stencils properly. In effect I get some random filled in shapes like this:
Visio being wrong
When of course it should look something like this:
Visio being wrong
Anyway, you know it’s going to be something simple, right? It was – themes.
On the design tab, make sure you have ‘No theme’ selected when you import/open your stencil. That way it won’t try and apply the theme to those stencils.
Visio Theme
Things like this are enough to drive you to coffee.
I’ve been running into an issue recently where my Outlook 2016 for Mac would constantly bring up reminders that I had already dismissed. I noticed it seemed to be related to using Outlook on another Mac for the same Exchange account – I.e. As soon as I did it on another Mac, then boom all the reminders were back on *all* machines.
It’s irritating, but not catastrophically so I guess.
Anyway, after doing some research there’s a fix that seems to sort it. Firstly, shut down the Outlook 2016 for Mac client on all of your Macs.
Go to the user’s library folder – you can do this by selecting the ‘Go’ menu in Finder, selecting ‘Go to Folder’ and entering ‘~/Library’:
The company I currently work for is in love with Email. Lots and lots of it. In fact, I’m fairly sure it’s their goal to deliver all the email everywhere.
Anyway, a side effect of this is that often you know you have some information, from someone, somewhere, about something and it’s hard to track it down.
Sure, Outlook has search, but hell you can never find anything, right? Well, having watched some people use the Outlook search I can understand why they can never find anything – I suspect people don’t realise exactly how powerful Outlook search is. There are great and simple ways to narrow the scope of your Email searches making it far, far easier to find the stuff you want.
Simple things like AND and OR. Search for Andy Pandy for example and Outlook will search for messages that contain:
Andy OR Pandy – and not in that order either. So emails with Pandy Andy will also show up.
It’s the most common misunderstanding of Outlook search I see, and why people can’t find things. If you wanted something that contained Andy AND Pandy you could search for:
Andy AND Pandy
…or search for emails with Andy in, but not Pandy. Guess how we do that?
Andy NOT Pandy
You can also of course search for the explicit phrase by searching for “Andy Pandy” (I.e. In quotes).
There are also some far more powerful search methods such as:
From: Emails from that person. Hasattachment:Yes Only emails that have an attachment. Attachments:attachmentname Only emails with that specific attachment – very useful Received:=date Items only received on that day Received:yesterday Take a guess on that? Also tomorrow/today… Received:last week …wild stab in the dark?
You can of course combine all of them – let’s imagine we want to find an email from Andy.Pandy@contoso.com, that has an attachment, and you received it last week. Well, you could search for:
You can see a video run through of how it works, and why it’s so cool, below. This was produced by Webucator, they produce a number of Microsoft Outlook Online and Onsite Training Classes. Must admit I do like video run throughs of stuff – it makes things so much easier to, well, visualise. Always find quite astonishing when some companies ban things like YouTube – how many people now when they want to know how to do stuff would immediately turn to YouTube? I know I do.