
Friday, August 17, 2018
Assigning licenses in O365 via Okta
Recently had to set up Okta assign some O365 licenses. I wasn't aware at that time, that this also requires me to manage all the Azure AD roles thru Okta as well. This is a pain in the ass.

Monday, July 9, 2018
PowerShell for Intune Corp device enrollment
There are a bunch of new corporate device examples in the PowerShell github for Intune
Guy should get an award for updating this, its pretty much exactly what I've been looking for
https://github.com/microsoftgraph/powershell-intune-samples/blob/master/CorporateDeviceEnrollment/CorpDeviceEnrollment_Export.ps1
$FileName_CSV = "CorpDeviceIdentifiers" + "_" + $(get-date -f dd-MM-yyyy-H-mm-ss) + ".csv"
$CDI = Get-CorporateDeviceIdentifiers
if($CDI){
foreach($CD in $CDI){
$IDI = $CD.importedDeviceIdentifier
$Desc = $CD.description
Write-Host "Adding '$IDI,$Desc' to '$FileName_CSV'..." -ForegroundColor Gray
Add-Content -Value "$IDI,$Desc" -Path "$ExportPath\$FileName_CSV"
}
}
else {
Write-Host "No Corporate Device Identifiers found..." -ForegroundColor Red
}
Write-Host
Guy should get an award for updating this, its pretty much exactly what I've been looking for
https://github.com/microsoftgraph/powershell-intune-samples/blob/master/CorporateDeviceEnrollment/CorpDeviceEnrollment_Export.ps1
$FileName_CSV = "CorpDeviceIdentifiers" + "_" + $(get-date -f dd-MM-yyyy-H-mm-ss) + ".csv"
$CDI = Get-CorporateDeviceIdentifiers
if($CDI){
foreach($CD in $CDI){
$IDI = $CD.importedDeviceIdentifier
$Desc = $CD.description
Write-Host "Adding '$IDI,$Desc' to '$FileName_CSV'..." -ForegroundColor Gray
Add-Content -Value "$IDI,$Desc" -Path "$ExportPath\$FileName_CSV"
}
}
else {
Write-Host "No Corporate Device Identifiers found..." -ForegroundColor Red
}
Write-Host
Tuesday, April 3, 2018
New InTune User Portal
From Microsoft
User experience update for the Company Portal app for iOS We've released a major user experience update to the Company Portal app for iOS. The update features a complete visual redesign that includes a modernized look and feel. We've maintained the functionality of the app, but increased its usability and accessibility. You'll also see: Support for iPhone X. Faster app launch and loading responses, to save users time. Additional progress bars to provide users with the most up-to-date status information. Improvements to the way users upload logs, so if something goes wrong, it's easier to report.For awhile now, the Company portal has been lacking behind what you get from MobileIron and airwatch, with the release this week the portal feels more modern. This has been a sorely needed update for awhile now. With a lot of firms moving off of Airwatch and MobileIron when doing Microsoft renewals. We are getting weekly updates from Intune. It surely has come a long way.

Friday, January 26, 2018
Useful O365 Pro Plus
Useful little script that can help you see which license is applied to a pro plus user.
Get-MsolUser | ? {$_.Licenses.ServiceStatus | ? {$_.ServicePlan.ServiceName -eq "OFFICESUBSCRIPTION" -and $_.ProvisioningStatus -eq "Success"}}
Get-MsolUser | ? {$_.Licenses.ServiceStatus | ? {$_.ServicePlan.ServiceName -eq "OFFICESUBSCRIPTION" -and $_.ProvisioningStatus -eq "Success"}}
Monday, December 25, 2017
Export to 4k pro plus Version 1711
Cool feature by Microsoft, you can now export to presentations to 4k, this was released in version 1711. Really cool, hopefully some people at the office who I know have asked about this can get some use out of this feature.
Monday, November 20, 2017
Conditional access
I have been working on conditional access rules this week in my test environment. I am planning on trying to sell to my senior leadership a plan to move off traditional MDM and towards an Intune/MAM conditional access setup.
Some of the things I really like about conditional access is the ability to control all of the different client access. I can lock it down to could application type, or domain user etc:
The only real problem I've come across is trying to sell this. It is such a huge change, and really requires all or nothing type approach. We will see what the new year brings.
Some of the things I really like about conditional access is the ability to control all of the different client access. I can lock it down to could application type, or domain user etc:
The only real problem I've come across is trying to sell this. It is such a huge change, and really requires all or nothing type approach. We will see what the new year brings.
Friday, September 29, 2017
Skype PowerShell vs. Teams Powershell
I think it is really cool that a lot of the commands that I've learned from Skype Powershell can be used with teams. With teams being announced this year as being the defector replacement for Skype in the future, this will make the conversation a lot easier for people who already know a lot of these commands.
Here is the repo
https://github.com/microsoftdocs/office-docs-powershell

Subscribe to:
Posts (Atom)
New Cloud Based Policy Management Service
Really good stuff. We have needed the group targeting for some time now. I also noticed they addeed a bunch of new groups to the Azure AD ...
-
Well BES 5.0, so far anyway, sucks. It sucks to get set up, the interface sucks, the it policy area looks like something that was designed ...
-
I have been working on conditional access rules this week in my test environment. I am planning on trying to sell to my senior leadership a...
-
I’ve read a lot of posts of people not getting email from BES, so I figured I’d throw together some of the common things I do when I user te...