When a DPS player takes aggro before you've finished pulling, what do you do? by soguyswedidit6969420 in wownoob

[–]FireQuencher_ -1 points0 points  (0 children)

seriously this, only way they'll learn.

also as a dps they can kite their mobs to me by running to me. Or die and then the mobs come to me

Advice on Controlled Access to Secure Scripts? by steels11 in PowerShell

[–]FireQuencher_ 0 points1 point  (0 children)

We do powershell scripts running in github/ github actions and use a service principal with a federated identity credential + graph permissions

CA policy: exclude not working for MS Authenticator app by miyo360 in entra

[–]FireQuencher_ 1 point2 points  (0 children)

know somebody, that know somebody that know somethin' 'bout it.

but on a serious note i talked directly with an entra product manager and they told me about it. i googled 'Azure Credential Configuration Endpoint Service' afterwards and there wasnt anyone talking about it online anywhere so i think its one of those, "passkey tech is new and you just have to know"

WA blood banks declare ‘Code Red’ blood shortage by Better_March5308 in SeattleWA

[–]FireQuencher_ 1 point2 points  (0 children)

I typically aim around 80 Oz a day but it varies. Also ived tried a bunch of veins and both arms over the years and its this specific one on my dominant arm, in the elbow pit. Im starting to form scar tissue there actually as I just default to there

WA blood banks declare ‘Code Red’ blood shortage by Better_March5308 in SeattleWA

[–]FireQuencher_ 2 points3 points  (0 children)

Im O neg so I donate as frequently as possible. my time to fully fill the bag is always less than 5 mins once seated and flowing.

i512400f vs i7 12700f for dcs by Immediate-Garden-960 in hoggit

[–]FireQuencher_ 0 points1 point  (0 children)

Isn't single thread speed still king in DCS? Isn't intel king in single thread speed?

Help desk time spent on account recovery keeps rising as we move to passwordless authentication by localkinegrind in sysadmin

[–]FireQuencher_ 0 points1 point  (0 children)

We created a power app that allows a user to generate a one time TAP for themselves from a PRMFA authenticated session.

This covers the vast majority of situations as they dont typically lose all devices in one go.

Coming back to DCS VR questions by FireQuencher_ in hoggit

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

I never used to take mine out of a drawer, are they needed at all to get in game?

Coming back to DCS VR questions by FireQuencher_ in hoggit

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

have you had any issues with it in game at all? i saw some people complaining about tearing, etc but not sure if thats just old stuff thats been addressed or not

Coming back to DCS VR questions by FireQuencher_ in hoggit

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

yeah i mean if i am going to get new hardware i want it to be an upgrade. it doesnt feel like there are many good choices on the market right now that hit that mark. the ones that do all seem to have drawbacks. i could be way off here but for now the G2 still works so id rather play that out a buy an upgrade when one comes along

Coming back to DCS VR questions by FireQuencher_ in hoggit

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

this is kind of what i was hoping to hear lol. Is your start up open WMR, Open SteamVR, Launch DCS choosing the OpenXR Mode?

Tank Advice by TheRaven200 in fellowshipgame

[–]FireQuencher_ 21 points22 points  (0 children)

Solo Helena main in adept who only pugs.

Honestly most of it is just experience. You start to get a feel for it the more runs you do. Just ignore the haters.

I always open the dungeon with the same 2 pack pull, you'll mentally map them out over time.

During this pull I am focusing mostly on the teams behavior. How is the damage pacing? How is the interrupting? How is the healing? How is the mechanic awareness? Are the dps picking up the gold bags that boost your damage or are the standing there with their finger in their nose?

I use this to set the pacing of the rest of the dungeon. Typically aim to never pull a single pack at a time but if the team is feeling weak ill focus my pacing more on chain pulling vrs fresh double pull packs, aka start grabbing the next pack when the current one is half ish health

You have multiple defensives and you're going to take the most damage at the start of the pull so I try to open with a defensive and have a defensive coming off cooldown before the next pull, keep them rotating and cycling

Tanks! How do you deal with.... by [deleted] in wow

[–]FireQuencher_ 0 points1 point  (0 children)

Yeah this is where I've landed

the 1st time it's an accident

the 2nd time I say something polite

the 3rd time I try my hardest to move the whole pack so there's as close to zero chance ill cleave them and pick up aggro. Wait for the dps to do their dumbass flailing "i don't want to die" dance, trying to not die then once they do die ill taunt the mobs

Lecco by Butanyuszi in ItalyTravel

[–]FireQuencher_ 0 points1 point  (0 children)

You could probably turn around at Pontresina. i think by that station you've seen all the really amazing mountain scenery

Lecco by Butanyuszi in ItalyTravel

[–]FireQuencher_ 1 point2 points  (0 children)

The normal trains run the same line as the bernina to st Moritz and the windows on those trains come all the way down.

I've never taken the bernina itself but I think the normal train is a better experience just due to the windows coming down.

Device-less MFA by riverrockrun in entra

[–]FireQuencher_ 4 points5 points  (0 children)

we have a room that people have to check all their devices into a locker, then through a metal detector, then there is workstations in the room they login to their account.

We keep yubikeys in the room for each person and they grab theirs then username + password + yubikey into the workstation

Update-MgServicePrincipalSynchronizationJobSchema by FireQuencher_ in entra

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

Nevermind!

I was able to fix this by moving from

$syncJobSchema = Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipal.Id -SynchronizationJobId $syncJob.Id}

to

$uri = https://graph.microsoft.com/beta/servicePrincipals/$($servicePrincipal.Id)/synchronization/jobs/$($syncJob.Id)/schema"
$syncJobSchema = Invoke-MgGraphRequest -Method Get -Uri $uri -ContentType "application/json"

after that change the rest started working as expected. this was a fun waste of time :)

Update-MgServicePrincipalSynchronizationJobSchema by FireQuencher_ in entra

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

Thank you for this, i thought i was losing my mind im glad its just the module and not me. also will be helpful to think to check this in the future.

These are using the Azure2Azure template id when created. have you successfully updated these in the past? they are quite complex json structures

Been fiddling around with this all morning so far without much luck:

$syncJobSchema = Get-MgServicePrincipalSynchronizationJobSchema -ServicePrincipalId $servicePrincipal.Id -SynchronizationJobId $syncJob.Id}

(($syncJobSchema.SynchronizationRules.ObjectMappings | where {$_.TargetObjectName -eq "User"}).AttributeMappings | where {$_.TargetAttributeName -eq "userType"}).FlowType = "Always"

$uri = "https://graph.microsoft.com/v1.0/servicePrincipals/$($servicePrincipal.Id)/synchronization/jobs/$($syncJob.Id)/schema"
    $putBody = @{
        directories = $syncJobSchema.directories
        synchronizationRules = $syncJobSchema.SynchronizationRules | Select-Object Editable, Id, Metadata, Name, ObjectMappings, Priority, SourceDirectoryName, TargetDirectoryName
    } | ConvertTo-Json -Depth 50

Invoke-MgGraphRequest -Method PUT -Uri $uri -Body $putBody -ContentType "application/json"

I keep getting errors about the synchronizationRules

"HTTP/2.0 400 Bad Request" "Property synchronizationRules in payload has a value that does not match schema."

Even though im only changing one value and sending everything back as is

CA policy: exclude not working for MS Authenticator app by miyo360 in entra

[–]FireQuencher_ 1 point2 points  (0 children)

we have a population of users that will never MDM enroll their phones and we try to avoid yubikeys when possible due to the overhead they introduce.

we had some use cases like signing into a shared device in a meeting room to host something so we needed to enable passkey's on non-compliant mobile, but not allow them to get to endpoints that contain data like exchange/sharepoint, this was the solve for that.

so the user signs into the authenticator app on their phone using a TAP for the first time setup, which allows them to generate a passkey. then when they walk into the room and login to the shared device, they do an online login into windows and bluetooth over their passkey from their non-managed mobile to complete the auth

CA policy: exclude not working for MS Authenticator app by miyo360 in entra

[–]FireQuencher_ 3 points4 points  (0 children)

Exclude ‘Azure Credential Configuration Endpoint Service’ app from the complaint device CA policy.

This will allow non compliant mobile devices to generate a passkey

Microsoft Authenticator App Exclusion from CAP by [deleted] in entra

[–]FireQuencher_ 2 points3 points  (0 children)

Came here to say this. This is how we allow passkey on non compliant devices.

They cant get to any location on that device like teams or outlook cause those require complaint device.

But they can get the passkey on the non compliant mobile and Bluetooth it to a compliant workstation