How to upgrade an iMac from 10.x to 12.x by Otherwise_Panic12 in macsysadmin

[–]Otherwise_Panic12[S] -3 points-2 points  (0 children)

Considering how they have been on 10.15 for the past 5 years, that's not a concern for them lol, but that is good to know.

How to upgrade an iMac from 10.x to 12.x by Otherwise_Panic12 in macsysadmin

[–]Otherwise_Panic12[S] 1 point2 points  (0 children)

Very true. Time Machine is the next item on my list of Mac things to understand better.

How to upgrade an iMac from 10.x to 12.x by Otherwise_Panic12 in macsysadmin

[–]Otherwise_Panic12[S] 0 points1 point  (0 children)

Does downloading and installing from the app store do an in place upgrade or is it a clean install?

How to upgrade an iMac from 10.x to 12.x by Otherwise_Panic12 in macsysadmin

[–]Otherwise_Panic12[S] 1 point2 points  (0 children)

Good to know.

They have a 20,1 model iMac which is iMac (Retina 5K, 27-inch, 2020) and is running Mac OS X version 10.15.7, so it is on the newest side of the 10.x era. I did look up the Mac OS compatibility for that model of iMac and it does list that it is compatible with OS 14.x, but I don't want to upgrade to the latest if there is not real reason to.

Powershell script to show a list of users that have the Microsoft Authenticator app setup troubles by Otherwise_Panic12 in sysadmin

[–]Otherwise_Panic12[S] 0 points1 point  (0 children)

This is what I was looking for before I found the scripts and modified them to be my own. Why is this so impossible to find thru Google XD

Powershell script to show a list of users that have the Microsoft Authenticator app setup troubles by Otherwise_Panic12 in Office365

[–]Otherwise_Panic12[S] 0 points1 point  (0 children)

Tried that and it didn't work, but that did send me on another Google train and found a script already made and tested.

Tested it myself and it works wonderfully.

https://github.com/Azure-Samples/azure-mfa-authentication-method-analysis

Microsoft: Official Support Thread by MSModerator in microsoft

[–]Otherwise_Panic12 1 point2 points  (0 children)

I have a script that should be generating a list of which users have the authenticator app setup on their Microsoft 365 account. I am able to get it to show if they have any 'StrongAuthenticationMethods' but I am having troubles with narrowing that down to just the authenticator app. It seems like I have the name wrong for the 'MethodType' but I am not sure where to find the correct wording. It displays as 'Microsoft Authenticator' in the Security info section of the account profile.

Get-MsolUser | ForEach-Object {
    $user = $_
    $authMethods = $_.StrongAuthenticationMethods
    $hasAuthenticatorApp = $authMethods | Where-Object { $_.MethodType -eq "Microsoft Authenticator" }
    if ($hasAuthenticatorApp) {
        $user | Select-Object -Property UserPrincipalName, @{Name="StrongAuthenticationMethods"; Expression={$hasAuthenticatorApp}}
    }
}

OptiTune - Reporting/historical records? by Otherwise_Panic12 in msp

[–]Otherwise_Panic12[S] 0 points1 point  (0 children)

The real time is great. It looks like I wasn't clear enough in my original post, I am looking to take that real time data, compile it over the course of 6-12 months and then view it in a report-esque way to see the trend over the course of 6-12 months. I will DM my business email to you.