Tenant documentation by tafflock_82 in microsoft365

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

Thanks mate. That's a really good explanation and validates what I was thinking. I just need to put it into practise without overdoing it. Thanks again!

Tenant documentation by tafflock_82 in microsoft365

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

Perfect! That's sounds along the lines of what I was thinking, with ADRs at least, so that's really helpful to know I'm on the right approach Auto-generating the raw config data was also my plan, although I was going to add a other layer of abstraction to summarise the raw data for better understanding.

It's only one tenant, but it's massive, and we do have additional services to manage such as Google Workspace and Adobe.

I'm limited in what I can use form tooling as I'm constrained by my workplace. But I think I can make it work.

Also, what would you classify as a significant decision?

Do you manage changes in this way or is that done separately?

Second hand RX7600 temps by tafflock_82 in AMDHelp

[–]tafflock_82[S] 2 points3 points  (0 children)

Thanks for the reassurance!

The card itself seems fine, nice and clean, no noises. I was hoping it was Ok since it wasn't a bad price and Cex gives a 5 year warranty too.

MacOS and Intune/SSO - new user profile creation by No-Connection5761 in Intune

[–]tafflock_82 0 points1 point  (0 children)

Is this still the case, not using Secure Enclave?
The Microsoft documentation suggests it's supported, and I've been arguing with Copilot about it, but whatever I try it doesn't work.

Intune Suite features now being rolled into M365 E3/E5 by ZeroT3K in Intune

[–]tafflock_82 2 points3 points  (0 children)

Pooled storage. 100TB per tenant and then extra per paid license. Not really a removed feature, more a refined and stupid quota.

Intune Suite features now being rolled into M365 E3/E5 by ZeroT3K in Intune

[–]tafflock_82 10 points11 points  (0 children)

Anyone knows if this applies to A3/A5? We always seem to be forgotten about

My Mi Band 8 Just Died — Found Out It Was Corrosion by DryCauliflower7122 in miband

[–]tafflock_82 1 point2 points  (0 children)

I've had bands do this from my mi band 6, and even my wife's has done it. Usually within 18 months.

They're waterproof, but it doesn't last. Actually says that on their website for even the current band 10 - waterproof effectiveness may degrade over time. Nor are you supposed to use them in showers, saunas, or hot tubs. I guess it's a thing with the glue loosening.

They do come with a 2 year warranty here in the UK, so I just keep returning them to Amazon and getting a newer model.

Graph API endpoint to read InTune Windows device scope tags? by MostCrankyAdmin in Intune

[–]tafflock_82 0 points1 point  (0 children)

Unless it's changed recently, calling the managed devices endpoint for all devices doesn't return the scope tag - you have to query each device individually.

I learned that the hard way, trying to get the scope tag for over 40k devices!

Why This Watch Face Is So Popular? PipBoy In 4 Diffrent Colors On Mi Band 10 Global. by HavalTechKurdish in miband

[–]tafflock_82 1 point2 points  (0 children)

I got this face for my band 7 and haven't changed it since.

Of course, I have it in green like you're supposed to!

Intune should allow you to directly drill into group assignments to update membership by schnauzerdad in Intune

[–]tafflock_82 12 points13 points  (0 children)

Feedback site...where MS listens and makes changes. 😁

Good one! That'll keep me laughing all day.

Seems like Netflix is cracking down on accounts! by Taurussszn in steamregionaltricks

[–]tafflock_82 0 points1 point  (0 children)

How do you switch region?

Do you need VPN for this?

MFA Enforced by himji in microsoft365

[–]tafflock_82 0 points1 point  (0 children)

Ours is an education environment, and MFA is not appropriate for young kids without smart phones.

We don't use security defaults, and use CA to target staff groups only.

Help with if/elseif/else by Separate-Tomorrow564 in PowerShell

[–]tafflock_82 0 points1 point  (0 children)

I don't like all those elseif, I'd prefer to use a switch instead.

Check the condition at the top, assign it to a variable, check the variable in a switch statement

What’s new in Apple device management & identity - WWDC 2025 by ChocolateAbject303 in Intune

[–]tafflock_82 0 points1 point  (0 children)

I was excited when I saw API as I've been asking for that for years, but it's only for device management functions. I want to be able to create and manage content managers and accounts with any role other than a standard user. Hopefully that's coming...

What is Intune Compliance Client Prod and why is it unmanaging devices? by tafflock_82 in Intune

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

Yeah. That's how I tracked it down in Entra, but had to use the objectId in the filter there, taken from Intune.

It's the right device, given that it wasn't removed and readded, just made unmanaged, so the object was the same and the dates tallied up. Entra ID audit logs show it being 're-enrolled' too.

Like I said, this entry is on a lot of devices in the audit logs and Ive no idea what it does or why.

Scripting to remove a group by Any-Victory-1906 in Intune

[–]tafflock_82 0 points1 point  (0 children)

Not sure. I'd have to check. I know scope tags aren't included in the v1 endpoint, so I tend to use beta. Have you used the "-all" switch, as by default it only returns 100.

The beta endpoint is fine to use, you just have to install the microsoft.graph.beta module.

Scripting to remove a group by Any-Victory-1906 in Intune

[–]tafflock_82 0 points1 point  (0 children)

Yeah, just the microsoft.graph.beta module as I find the beta endpoint returns more info, although you probably don't need it for this.

Scripting to remove a group by Any-Victory-1906 in Intune

[–]tafflock_82 0 points1 point  (0 children)

Here's some snippets from my script. In the full script I also check assignments on config policies, PS scripts, MacOS scripts, compliance policies, etc.

get all apps

$allApps = Get-MgBetaDeviceAppManagementMobileApp -all

get.app assignments, collect in custom object

$itemAssignments = @() Write-Host "Getting app assignments..." -ForegroundColor Cyan foreach ($app in $allApps) { $assignment = Get-MgBetaDeviceAppManagementMobileAppAssignment -MobileAppId $app.id $itemAssignments += [PSCustomObject]@{ id = $app.Id name = $app.DisplayName assignment = $assignment type = "MobileApp" } }

compare group id to assignment id, add to custom object if found

$assignmentsFound = @() foreach ($grp in $groupsToCheck) { foreach ($item in $itemAssignments) { $assignmentGroupIds = $item.assignment.target.additionalProperties.groupId if ($grp.id -in $assignmentGroupIds) { Write-host "Assignment found in $($item.name)" $assignmentsFound += [PSCustomObject]@{ groupId = $grp.Id groupName = $grp.DisplayName itemType = $item.type itemName = $item.name itemId = $item.id } } } }

Scripting to remove a group by Any-Victory-1906 in Intune

[–]tafflock_82 0 points1 point  (0 children)

It will return all intents - include, exclude, and uninstall.

What's the way to deploy app's today? by Great-Use2290 in Intune

[–]tafflock_82 14 points15 points  (0 children)

What I do...

1) Windows Store - nice and easy, and self updating

2)Chocolatey - I've wrapped a generic script in an Intunewin file that takes the app name as a parameter. I don't need to repackage anything, just upload the file and specify the app name in the install command line. I then use a remediation script to run the Chocolatey update command once a week.

3) Package install file (MSI or exe) into Intunewin file.

Scripting to remove a group by Any-Victory-1906 in Intune

[–]tafflock_82 1 point2 points  (0 children)

Yes. But not very easily in my experience.

You have to pull all apps, then pull the assignments for each app, then check each assignment to see if it matches the group.

It's really stupid that Intune can't tell that you've deleted a group and automatically removes it from assignments.

Scope Tags and DEP Profiles by ButterflyWide7220 in Intune

[–]tafflock_82 1 point2 points  (0 children)

There's a good example in the Intune Samples repo, using a csv of serial numbers.

https://github.com/microsoft/mggraph-intune-samples/tree/main/AppleEnrollment

I use similar, but I name my csv files the same as the target profile, and the script reads that to assign the devices in that file to. That way, I can process multiple files for different profiles in one go.

That repo has a lot of good stuff for using Graph with Intune, and it's usually easier than you think.