S-dn-Y
S-dn-Y
Hey all, We're still getting this error a year later in our environment. ``` PS C:\Program Files\PowerShell\7> Get-Module DBA*,SQLServer ModuleType Version PreRelease Name ExportedCommands ---------- ------- ---------- ---- ---------------- Script...
> Have you simply tried adding `+` to your ErrorVariable? > > -ErrorVariable +collectedErrors > This will append errors to the variable instead of overwriting it Hi! Thanks for your...
So after a bit more digging it seems like I get my errors back multiplied because in my real life scenario, the ForEach-Object is placed one level higher than I...
Hi @bgavrilMS, Thanks for the reply. Interesting view, honestly I'm not sure, I found this method in several modules on the PowerShell Gallery and online resources, but no MS owned...
Thank you @bgavrilMS. Reading in on the method, also tried converting my ExtraQueryParameters to a WithClaims method: ` $tokenRequestSilent.WithClaims('{"access_token" : {"amr": { "values": ["mfa"] }}}') | Out-Null` also tried `$tokenRequestSilent.WithClaims('{"amr":...
Hi @xinyuxu1026, Thank you chipping in. I may have left some information out on how I'm trying to use it exactly, let me try to elaborate :) I'm trying to...
> Hi @S-dn-Y , if the claim is not issued by ESTS or by a resource, then this behavior is expected. Customers should not be injecting magic values themselves as...
Thank you @bgavrilMS, your help is greatly appreciated!! > Do you see any experience issue with this flow? Hahah well, te be very honest.. I don't. But I have the...
Hi Bogdan, Wow.. it hit me yesterday after reading your reply. > Maybe you are not serializing the cache? https://learn.microsoft.com/en-us/entra/msal/dotnet/how-to/token-cache-serialization?tabs=desktop I wasn't indeed.. It makes perfect sense now, I was...