Sam Erde
Sam Erde
I analyzed the usage of commands and module dependencies within the built modules (0.22.0-modularize) and came up with the following. It looks like Microsoft.Graph.Functions isn't used at all, so maybe...
I've been thinking about submitting this same PR but have minor reservations because there doesn't seem to be a release of the Graph module since 2.25.0 that has no roadblock...
This is a great point about usability of the function's output, and it also raises some important questions about the design of PowerShell modules and functions. How much work should...
Which version of platyPS do you have loaded? You may have a newer version than 0.12.0, which I believe Catesta is still pinned to. @techthoughts2, have you started any testing...
Great catch. This may fix an issue that I've noticed as well. It shouldn't be hard to have a workflow keep a copy of the PSL updated or even cached...
I haven't found any way to list protection alert policies other than with the `Get-ProtectionAlert` cmdlet.
> [@SamErde](https://github.com/SamErde) can you please confirm if this is still an issue for CloudShell and Microsoft Graph PowerShell v2.31.0? I just tried to update from 2.30.0 to 2.31.0 and somehow...
I *might have* found a workaround for this bug in Azure Cloud Shell: - FAILS: `Connect-MgGraph -Scopes 'RecordsManagement.Read.All'` - WORKS: `Connect-MgGraph -Scopes 'RecordsManagement.Read.All' -TenantId {TENANT_ID}` Can anyone else test and...
I can consistently reproduce this slowness as well.  It is loading every module dependency before returning the list of commands in the module. After running this test many times...
As added context, I have found that if the depended/required modules are already imported (either manually or from another module in the same session), that also reduces the time to...