Skip to main content

Posts

Showing posts with the label Calendar

How to Get your Microsoft Teams to Appear for mail and calendar operations

Depending upon your settings and circumstances, there's a chance that groups created in Microsoft Teams might play so well together.  Specifically, your team might not be available for email.  As it turns out, the teams ARE available... they're just hidden.   and a little PowerShell is enough to coax them out.  Our Example In our example, the site is called Application Redevelopment and you can see from the screenshot that it appears in teams but not in outlook. The PowerShell Commands Session Setup The setup is as per usual; Start PowerShell in Administrator Mode. Set-ExecutionPolicy RemoteSigned Press Y and Enter. $UserCredential = Get-Credential Enter your user name and password. Create the session. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection and activate it. Import-PSSessio...

How to Set up Rooms Properly in Office 365 - Part 2 (Extending Booking Time)

Following on from Part 1 where I talked about how to get rooms to show up in the room list, here's the next step where we extend the booking time from the default of 180 days. Why is there a limit? In most circumstances, a limit makes perfect sense. It stops employees from booking meeting rooms for years in advance and then leaving the company. In our case, it's actually fairly common to book the meeting schedule up to about 18 months into the future - so the 180 day (6 month) limit is quite restricting for us. I decided to change the limit to 730 days. Essentially two years.  The Steps I'm going to assume that you're familiar with PowerShell by now... I wasn't when I wrote Part 1 but now PowerShell is my friend. If you're unsure about how to execute the steps, please go back and check Part 1 as there's only a couple of commands at the end that are different. So, without further ado; Start PowerShell as Administrator (Local Admin Rights...

How to Set up Rooms Properly in Office 365

You'd think that setting rooms up in Office 365 would be a simple matter of going to the Office 365 Admin console, expanding Resources, clicking on Rooms and Equipment and then using the Add Button This works but it doesn't do everything. If you want your rooms to appear in the Room List (and to show available times), you'll have to use PowerShell to put them there. Finding Answers So... I spent a while trying to find the answers without a whole lot of luck. I think that coming from the Notes/Domino world and not being familiar with the outlook terminology hindered me a bit in this regard.  In any case, big thanks to IT for Dummies btw whose page called " Create Room List Office 365 " made very little sense to me but helped me to explain to Microsoft Support what it was that I was looking for.  BTW: Microsoft support can be reached via the Support and then Service Requests options in the Admin Center. I've found their support to be excel...

Apple iOS6 Calendaring bug Affecting Exchange (and by extension, Lotus)

One of the things that the company I work for (and most others) do on a regular basis is send meeting invites to people at other companies and on various other systems.  Notes meeting handling isn't perfect and we've had trouble with Blackberry and Google calendars in the past, but nothing like the trouble we've had this week. It seems that when we send a meeting invite out and one of our recipients cancels, they take over the meeting as chair and cancel it for the remaining participants too - even if they've already accepted. It's taken us a while to get our head around the problem, particularly as it happened with several different meetings and multiple outside sources.  Naturally, you presume that several systems out there can't be wrong and it must be a problem at our end - even if we haven't changed anything.  Right? Wrong! As it turns out, the recently released Apple iOS 6 has a flaw which trips up Microsoft Exchange systems not configured acco...